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

:root {
  /* Colors */
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #dbeafe;
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-success: #10b981;
  --color-warning: #ef4444;
  
  /* Backgrounds */
  --color-bg-dark: #0f172a;
  --color-bg-darker: #020617;
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  --color-bg-gray: #f1f5f9;
  
  /* Text */
  --color-text-primary: #1e293b;
  --color-text-secondary: #475569;
  --color-text-light: #e2e8f0;
  --color-text-lighter: #cbd5e1;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Icon Sizes */
  --icon-sm: 20px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
}

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

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

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

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 2.75rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

p {
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  p {
    font-size: 1rem;
  }
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border-color: var(--color-primary);
}

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

.btn-secondary {
  background-color: var(--color-accent);
  color: var(--color-bg-white);
  border-color: var(--color-accent);
}

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

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

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

.btn-outline-light {
  background-color: transparent;
  color: var(--color-bg-white);
  border-color: var(--color-bg-white);
}

.btn-outline-light:hover {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-primary);
  border: none;
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

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

.icon-sm {
  width: var(--icon-sm);
  height: var(--icon-sm);
  font-size: var(--icon-sm);
}

.icon-md {
  width: var(--icon-md);
  height: var(--icon-md);
  font-size: var(--icon-md);
}

.icon-lg {
  width: var(--icon-lg);
  height: var(--icon-lg);
  font-size: var(--icon-lg);
}

.icon-xl {
  width: var(--icon-xl);
  height: var(--icon-xl);
  font-size: var(--icon-xl);
}

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

@media (min-width: 768px) {
  .card {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

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

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

@media (min-width: 768px) {
  .card-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .card-title {
    font-size: 1.25rem;
  }
}

.card-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .card-text {
    font-size: 1rem;
  }
}

/* Grid */
.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    gap: 2rem;
  }
}

.grid-2 {
  grid-template-columns: 1fr;
}

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

.grid-3 {
  grid-template-columns: 1fr;
}

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

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

.grid-4 {
  grid-template-columns: 1fr;
}

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

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

/* Flex */
.flex {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .flex {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .flex {
    gap: 2rem;
  }
}

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

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

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

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .badge {
    font-size: 0.8125rem;
  }
}

.badge-accent {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--color-accent-dark);
}

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

/* Section Base */
section {
  overflow: hidden;
}

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

.text-muted {
  color: var(--color-text-secondary);
}

.text-light {
  color: var(--color-text-light);
}

.font-display {
  font-family: var(--font-display);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leading-tight {
  line-height: 1.2;
}

.leading-relaxed {
  line-height: 1.8;
}

/* Spacing Utilities */
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.py-1 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-2 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-3 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-4 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

/* Display */
.hidden {
  display: none !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

/* Lists */
ul, ol {
  padding-left: 1.5rem;
}

@media (min-width: 768px) {
  ul, ol {
    padding-left: 2rem;
  }
}

li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  li {
    font-size: 1rem;
  }
}

/* Form Elements */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  input, textarea, select {
    padding: 1rem;
  }
}

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

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

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

@media (min-width: 768px) {
  label {
    font-size: 1rem;
  }
}

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

/* Links */
a {
  color: var(--color-primary);
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

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

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

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

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

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

.animate-slideUp {
  animation: slideUp 0.5s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 0.5s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.5s ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
/* ============================================
   HEADER: Career Forge - Complete Styling
   ============================================ */

.header-career-forge {
  background-color: var(--color-bg-dark);
  padding: var(--spacing-sm) 0;
  position: static;
  z-index: 100;
  border-bottom: 2px solid var(--color-primary);
}

/* Container - Layout Control */
.header-career-forge-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .header-career-forge-container {
    padding: 0 var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .header-career-forge-container {
    padding: 0 var(--spacing-xl);
  }
}

/* ============================================
   LOGO/BRAND SECTION
   ============================================ */

.header-career-forge-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-xs);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.header-career-forge-brand:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.header-career-forge-brand i {
  font-size: var(--icon-md);
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.header-career-forge-brand:hover i {
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .header-career-forge-brand {
    font-size: 1.5rem;
  }

  .header-career-forge-brand i {
    font-size: var(--icon-lg);
  }
}

/* ============================================
   DESKTOP NAVIGATION
   ============================================ */

.header-career-forge-desktop-nav {
  display: none;
  flex-direction: row;
  gap: var(--spacing-lg);
  flex: 1;
  margin-left: var(--spacing-lg);
}

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

.header-career-forge-nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  position: relative;
}

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

.header-career-forge-nav-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

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

/* ============================================
   CTA BUTTON (DESKTOP)
   ============================================ */

.header-career-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-accent);
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .header-career-forge-cta-button {
    display: inline-block;
  }
}

.header-career-forge-cta-button:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

@media (min-width: 1024px) {
  .header-career-forge-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ============================================
   MOBILE TOGGLE BUTTON (HAMBURGER)
   ============================================ */

.header-career-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .header-career-forge-mobile-toggle {
    display: none;
  }
}

.header-career-forge-mobile-toggle span {
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-career-forge-mobile-toggle:hover span {
  background-color: var(--color-primary);
}

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

/* Hamburger animation - active state */
.header-career-forge-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.header-career-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-darker);
  border-left: 3px solid var(--color-primary);
  z-index: 99;
  overflow-y: auto;
  padding-top: 60px;
  
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

/* Active/Open state - CRITICAL THREE PROPERTIES */
.header-career-forge-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .header-career-forge-mobile-menu {
    display: none;
  }
}

/* Mobile Menu Header */
.header-career-forge-mobile-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--spacing-lg);
}

.header-career-forge-mobile-header span {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Close Button */
.header-career-forge-mobile-close {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.header-career-forge-mobile-close:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

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

/* ============================================
   MOBILE NAVIGATION LINKS
   ============================================ */

.header-career-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.header-career-forge-mobile-link {
  color: var(--color-text-light);
  text-decoration: none;
  padding: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm);
}

.header-career-forge-mobile-link:hover {
  color: var(--color-primary);
  background-color: rgba(37, 99, 235, 0.1);
  padding-left: calc(var(--spacing-md) + var(--spacing-sm));
}

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

/* ============================================
   MOBILE CTA BUTTON
   ============================================ */

.header-career-forge-mobile-cta {
  display: block;
  padding: 1rem var(--spacing-md);
  margin: 0 var(--spacing-md);
  background-color: var(--color-accent);
  color: #000000;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 2px solid var(--color-accent);
}

.header-career-forge-mobile-cta:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-career-forge-mobile-cta:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 767px) {
  .header-career-forge {
    padding: 0.75rem 0;
  }

  .header-career-forge-container {
    gap: var(--spacing-sm);
  }

  .header-career-forge-brand {
    font-size: 1.1rem;
  }

  .header-career-forge-brand i {
    font-size: 24px;
  }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

    /* Career Portal Main Styles */
  .career-portal {
    width: 100%;
  }

  /* Hero Section */
  .career-portal .hero-section {
    background-color: #0f172a;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .career-portal .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .career-portal .hero-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .career-portal .hero-text h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .career-portal .hero-text h1 {
      font-size: 2.75rem;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .hero-text h1 {
      font-size: 3.5rem;
    }
  }

  .career-portal .hero-text p {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .career-portal .hero-text p {
      font-size: 1rem;
    }
  }

  .career-portal .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .career-portal .hero-buttons {
      flex-direction: row;
      gap: 1.5rem;
    }
  }

  .career-portal .hero-section .btn {
    width: 100%;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .career-portal .hero-section .btn {
      width: auto;
    }
  }

  .career-portal .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .career-portal .hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    object-fit: cover;
  }

  /* Featured Posts Section */
  .career-portal .featured-posts-section {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .career-portal .featured-posts-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  @media (min-width: 768px) {
    .career-portal .featured-posts-header {
      margin-bottom: 4rem;
    }
  }

  .career-portal .featured-posts-header h2 {
    font-size: 1.75rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
  }

  @media (min-width: 768px) {
    .career-portal .featured-posts-header h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .featured-posts-header h2 {
      font-size: 2.75rem;
    }
  }

  .career-portal .featured-posts-header p {
    font-size: 0.875rem;
    color: #475569;
  }

  @media (min-width: 768px) {
    .career-portal .featured-posts-header p {
      font-size: 1rem;
    }
  }

  .career-portal .posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

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

  @media (min-width: 1024px) {
    .career-portal .posts-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .career-portal .post-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }

  .career-portal .post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .career-portal .post-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
  }

  .career-portal .post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .career-portal .post-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .career-portal .post-body {
      padding: 2rem;
    }
  }

  .career-portal .post-card h3 {
    font-size: 1.125rem;
    color: #0f172a;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .career-portal .post-card h3 {
      font-size: 1.25rem;
    }
  }

  .career-portal .post-card p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .career-portal .post-card p {
      font-size: 1rem;
    }
  }

  .career-portal .post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
  }

  @media (min-width: 768px) {
    .career-portal .post-link {
      font-size: 1rem;
    }
  }

  .career-portal .post-link:hover {
    color: #1e40af;
    transform: translateX(4px);
  }

  .career-portal .posts-footer {
    display: flex;
    justify-content: center;
  }

  /* Benefits Section */
  .career-portal .benefits-section {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .career-portal .benefits-content {
    display: flex;
    flex-direction: column;
  }

  .career-portal .benefits-content h2 {
    font-size: 1.75rem;
    color: #0f172a;
    text-align: center;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .career-portal .benefits-content h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .benefits-content h2 {
      font-size: 2.75rem;
    }
  }

  .career-portal .benefits-intro {
    text-align: center;
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .career-portal .benefits-intro {
      font-size: 1rem;
      margin-bottom: 3rem;
    }
  }

  .career-portal .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  @media (min-width: 1024px) {
    .career-portal .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
  }

  .career-portal .benefit-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .career-portal .benefit-card {
      padding: 2rem;
    }
  }

  .career-portal .benefit-card:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  }

  .career-portal .benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dbeafe;
    color: #2563eb;
    border-radius: 8px;
    font-size: 24px;
  }

  @media (min-width: 768px) {
    .career-portal .benefit-icon {
      width: 56px;
      height: 56px;
      font-size: 28px;
    }
  }

  .career-portal .benefit-card h4 {
    font-size: 1.125rem;
    color: #0f172a;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .career-portal .benefit-card h4 {
      font-size: 1.25rem;
    }
  }

  .career-portal .benefit-card p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .career-portal .benefit-card p {
      font-size: 1rem;
    }
  }

  /* How It Works Section */
  .career-portal .how-it-works-section {
    background-color: #f1f5f9;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .career-portal .how-it-works-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .how-it-works-section {
      padding: 6rem 0;
    }
  }

  .career-portal .how-it-works-content {
    display: flex;
    flex-direction: column;
  }

  .career-portal .how-it-works-content h2 {
    font-size: 1.75rem;
    color: #0f172a;
    text-align: center;
    margin-bottom: 0.75rem;
  }

  @media (min-width: 768px) {
    .career-portal .how-it-works-content h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .how-it-works-content h2 {
      font-size: 2.75rem;
    }
  }

  .career-portal .intro-text {
    text-align: center;
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 2.5rem;
  }

  @media (min-width: 768px) {
    .career-portal .intro-text {
      font-size: 1rem;
      margin-bottom: 3.5rem;
    }
  }

  .career-portal .steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .career-portal .steps-container {
      gap: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .steps-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }
  }

  .career-portal .step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  @media (min-width: 768px) {
    .career-portal .step {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .career-portal .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
  }

  @media (min-width: 768px) {
    .career-portal .step-number {
      width: 56px;
      height: 56px;
      font-size: 1.75rem;
    }
  }

  .career-portal .step h4 {
    font-size: 1.125rem;
    color: #0f172a;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .career-portal .step h4 {
      font-size: 1.25rem;
    }
  }

  .career-portal .step p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .career-portal .step p {
      font-size: 1rem;
    }
  }

  .career-portal .step img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-top: 0.5rem;
  }

  /* About Development Section */
  .career-portal .about-development-section {
    background-color: #0f172a;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .career-portal .about-development-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .about-development-section {
      padding: 6rem 0;
    }
  }

  .career-portal .about-development-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .career-portal .about-development-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .career-portal .about-development-section h2 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .career-portal .about-development-section h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .about-development-section h2 {
      font-size: 2.75rem;
    }
  }

  .career-portal .about-text p {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .career-portal .about-text p {
      font-size: 1rem;
      margin-bottom: 2rem;
    }
  }

  .career-portal .about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .career-portal .about-highlights {
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
  }

  .career-portal .highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .career-portal .highlight-item i {
    color: #10b981;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .career-portal .highlight-item p {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin: 0;
  }

  @media (min-width: 768px) {
    .career-portal .highlight-item p {
      font-size: 1rem;
    }
  }

  .career-portal .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    object-fit: cover;
  }

  /* Statistics Section */
  .career-portal .statistics-section {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .career-portal .statistics-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .statistics-section {
      padding: 6rem 0;
    }
  }

  .career-portal .statistics-content {
    display: flex;
    flex-direction: column;
  }

  .career-portal .statistics-content h2 {
    font-size: 1.75rem;
    color: #0f172a;
    text-align: center;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .career-portal .statistics-content h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .statistics-content h2 {
      font-size: 2.75rem;
    }
  }

  .career-portal .statistics-intro {
    text-align: center;
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .career-portal .statistics-intro {
      font-size: 1rem;
      margin-bottom: 3rem;
    }
  }

  .career-portal .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  @media (min-width: 1024px) {
    .career-portal .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }
  }

  .career-portal .stat-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    border-top: 4px solid #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  @media (min-width: 768px) {
    .career-portal .stat-card {
      padding: 2rem;
    }
  }

  .career-portal .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
  }

  @media (min-width: 768px) {
    .career-portal .stat-number {
      font-size: 3rem;
    }
  }

  .career-portal .stat-card p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .career-portal .stat-card p {
      font-size: 1rem;
    }
  }

  /* Contact Section */
  .career-portal .contact-section {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .career-portal .contact-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .contact-section {
      padding: 6rem 0;
    }
  }

  .career-portal .contact-content {
    display: flex;
    flex-direction: column;
  }

  .career-portal .contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  @media (min-width: 768px) {
    .career-portal .contact-header {
      margin-bottom: 3.5rem;
    }
  }

  .career-portal .contact-header h2 {
    font-size: 1.75rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
  }

  @media (min-width: 768px) {
    .career-portal .contact-header h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .career-portal .contact-header h2 {
      font-size: 2.75rem;
    }
  }

  .career-portal .contact-header p {
    font-size: 0.875rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .career-portal .contact-header p {
      font-size: 1rem;
    }
  }

  .career-portal .contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 1024px) {
    .career-portal .contact-form-wrapper {
      grid-template-columns: 2fr 1fr;
      gap: 3rem;
    }
  }

  .career-portal .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .career-portal .contact-form {
      gap: 2rem;
    }
  }

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

  .career-portal .form-group label {
    font-size: 0.875rem;
    color: #0f172a;
    font-weight: 500;
  }

  @media (min-width: 768px) {
    .career-portal .form-group label {
      font-size: 1rem;
    }
  }

  .career-portal .form-group input,
  .career-portal .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .career-portal .form-group input,
    .career-portal .form-group textarea {
      padding: 1rem;
      font-size: 1rem;
    }
  }

  .career-portal .form-group input:focus,
  .career-portal .form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

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

  .career-portal .form-consent {
    display: flex;
    align-items: flex-start;
  }

  .career-portal .form-consent label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.75rem;
    color: #475569;
  }

  @media (min-width: 768px) {
    .career-portal .form-consent label {
      font-size: 0.875rem;
    }
  }

  .career-portal .form-consent input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
  }

  .career-portal .form-consent a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
  }

  .career-portal .form-consent a:hover {
    text-decoration: underline;
  }

  .career-portal .contact-form-submit {
    padding: 0.75rem 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  @media (min-width: 768px) {
    .career-portal .contact-form-submit {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  .career-portal .contact-form-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .career-portal .contact-form-submit:active {
    transform: translateY(0);
  }

  .career-portal .form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
  }

  @media (min-width: 768px) {
    .career-portal .form-benefits {
      padding: 2rem;
    }
  }

  .career-portal .form-benefits h4 {
    font-size: 1.125rem;
    color: #0f172a;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .career-portal .form-benefits h4 {
      font-size: 1.25rem;
    }
  }

  .career-portal .form-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 0;
    list-style: none;
  }

  .career-portal .form-benefits li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.875rem;
    color: #475569;
  }

  @media (min-width: 768px) {
    .career-portal .form-benefits li {
      font-size: 1rem;
    }
  }

  .career-portal .form-benefits i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  /* Cookie Banner */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 1rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.3s ease-out;
  }

  @media (min-width: 768px) {
    .cookie-banner {
      padding: 1.5rem;
    }
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

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

  .cookie-content {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
  }

  @media (min-width: 768px) {
    .cookie-content {
      flex-direction: row;
      gap: 2rem;
    }
  }

  .cookie-banner p {
    font-size: 0.75rem;
    color: #cbd5e1;
    margin: 0;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .cookie-banner p {
      font-size: 0.875rem;
    }
  }

  .cookie-banner a {
    color: #2563eb;
    text-decoration: none;
  }

  .cookie-banner a:hover {
    text-decoration: underline;
  }

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

  @media (min-width: 768px) {
    .cookie-buttons {
      gap: 1.5rem;
    }
  }

  .cookie-accept,
  .cookie-decline {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  @media (min-width: 768px) {
    .cookie-accept,
    .cookie-decline {
      padding: 0.75rem 1.5rem;
      font-size: 0.875rem;
    }
  }

  .cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
  }

  .cookie-accept:hover {
    background-color: #1e40af;
  }

  .cookie-decline {
    background-color: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
  }

  .cookie-decline:hover {
    border-color: #cbd5e1;
  }

    /* ========================================
   FOOTER COMPONENT STYLES
   ======================================== */

.footer {
  background-color: var(--color-bg-darker);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 6rem 0;
  }
}

/* Container handled by site-wide styles */

.footer-content {
  display: block;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.footer-about {
  display: block;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-about {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-about {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }
}

.footer-about-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .footer-about-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .footer-about-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.footer-about-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-lighter);
}

@media (min-width: 768px) {
  .footer-about-text {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .footer-about-text {
    font-size: 1rem;
    max-width: 500px;
  }
}

/* ========================================
   NAVIGATION SECTION
   ======================================== */

.footer-nav-section {
  display: block;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-nav-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-nav-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}

.footer-section-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary-light);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-section-title {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .footer-section-title {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

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

@media (min-width: 768px) {
  .footer-nav {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .footer-nav {
    gap: 1.25rem;
  }
}

/* ========================================
   LEGAL SECTION
   ======================================== */

.footer-legal-section {
  display: block;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-legal-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-legal-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}

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

@media (min-width: 768px) {
  .footer-legal {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .footer-legal {
    gap: 1.25rem;
  }
}

/* ========================================
   FOOTER LINKS
   ======================================== */

.footer-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-lighter);
  text-decoration: none;
  transition: all 250ms ease-in-out;
  display: inline-block;
  position: relative;
}

@media (min-width: 768px) {
  .footer-link {
    font-size: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .footer-link {
    font-size: 0.95rem;
  }
}

.footer-link:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

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

/* ========================================
   COPYRIGHT SECTION
   ======================================== */

.footer-copyright {
  display: block;
  text-align: center;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .footer-copyright {
    padding-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-copyright {
    padding-top: 3rem;
  }
}

.footer-copyright-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-lighter);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer-copyright-text {
    font-size: 0.85rem;
  }
}

@media (min-width: 1024px) {
  .footer-copyright-text {
    font-size: 0.9rem;
  }
}

/* ========================================
   RESPONSIVE LAYOUT ADJUSTMENTS
   ======================================== */

@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .footer-about {
    grid-column: 1;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-nav-section {
    grid-column: 2;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-legal-section {
    grid-column: 3;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
    

/* Category Page Styles */
/* ============================================================
   CAREER ADVANCEMENT KAZAKHSTAN CATEGORY PAGE
   Complete CSS Isolation with Category Slug
   ============================================================ */

/* Hero Section */
.category-page-career-advancement-kazakhstan .category-hero-career-advancement-kazakhstan {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .category-hero-career-advancement-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-career-advancement-kazakhstan .category-hero-career-advancement-kazakhstan {
    padding: 6rem 0;
  }
}

.category-page-career-advancement-kazakhstan .hero-content-career-advancement-kazakhstan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .category-page-career-advancement-kazakhstan .hero-content-career-advancement-kazakhstan {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.category-page-career-advancement-kazakhstan .hero-text-career-advancement-kazakhstan h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .hero-text-career-advancement-kazakhstan h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .category-page-career-advancement-kazakhstan .hero-text-career-advancement-kazakhstan h1 {
    font-size: 3.5rem;
  }
}

.category-page-career-advancement-kazakhstan .hero-text-career-advancement-kazakhstan p {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .hero-text-career-advancement-kazakhstan p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.category-page-career-advancement-kazakhstan .hero-image-career-advancement-kazakhstan {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Posts Grid Section */
.category-page-career-advancement-kazakhstan .posts-grid-section-career-advancement-kazakhstan {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .posts-grid-section-career-advancement-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-career-advancement-kazakhstan .posts-grid-section-career-advancement-kazakhstan {
    padding: 6rem 0;
  }
}

.category-page-career-advancement-kazakhstan .posts-grid-career-advancement-kazakhstan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .posts-grid-career-advancement-kazakhstan {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .category-page-career-advancement-kazakhstan .posts-grid-career-advancement-kazakhstan {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Card Styling */
.category-page-career-advancement-kazakhstan .card-career-advancement-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #2563eb;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .card-career-advancement-kazakhstan {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.category-page-career-advancement-kazakhstan .card-career-advancement-kazakhstan:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-left-color: #f59e0b;
}

.category-page-career-advancement-kazakhstan .card-image-career-advancement-kazakhstan {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .card-image-career-advancement-kazakhstan {
    height: 260px;
  }
}

.category-page-career-advancement-kazakhstan .card-career-advancement-kazakhstan h3 {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .card-career-advancement-kazakhstan h3 {
    font-size: 1.375rem;
  }
}

.category-page-career-advancement-kazakhstan .card-career-advancement-kazakhstan p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .card-career-advancement-kazakhstan p {
    font-size: 0.95rem;
  }
}

.category-page-career-advancement-kazakhstan .card-link-career-advancement-kazakhstan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .card-link-career-advancement-kazakhstan {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

.category-page-career-advancement-kazakhstan .card-link-career-advancement-kazakhstan:hover {
  background-color: #1e40af;
  transform: translateX(4px);
}

.category-page-career-advancement-kazakhstan .card-link-career-advancement-kazakhstan::after {
  content: '→';
  font-weight: bold;
}

/* Additional Section 1: Strategies */
.category-page-career-advancement-kazakhstan .additional-section-1-career-advancement-kazakhstan {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .additional-section-1-career-advancement-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-career-advancement-kazakhstan .additional-section-1-career-advancement-kazakhstan {
    padding: 6rem 0;
  }
}

.category-page-career-advancement-kazakhstan .additional-content-1-career-advancement-kazakhstan h2 {
  font-size: 1.75rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .additional-content-1-career-advancement-kazakhstan h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.category-page-career-advancement-kazakhstan .additional-content-1-career-advancement-kazakhstan > p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .additional-content-1-career-advancement-kazakhstan > p {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}

.category-page-career-advancement-kazakhstan .strategies-list-career-advancement-kazakhstan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .strategies-list-career-advancement-kazakhstan {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .category-page-career-advancement-kazakhstan .strategies-list-career-advancement-kazakhstan {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.category-page-career-advancement-kazakhstan .strategy-item-career-advancement-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: 12px;
  border-top: 3px solid #2563eb;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .strategy-item-career-advancement-kazakhstan {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.category-page-career-advancement-kazakhstan .strategy-item-career-advancement-kazakhstan:hover {
  background-color: #dbeafe;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.category-page-career-advancement-kazakhstan .strategy-icon-career-advancement-kazakhstan {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #dbeafe;
  color: #2563eb;
  border-radius: 8px;
  font-size: 24px;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .strategy-icon-career-advancement-kazakhstan {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

.category-page-career-advancement-kazakhstan .strategy-item-career-advancement-kazakhstan h3 {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 700;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .strategy-item-career-advancement-kazakhstan h3 {
    font-size: 1.25rem;
  }
}

.category-page-career-advancement-kazakhstan .strategy-item-career-advancement-kazakhstan p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .strategy-item-career-advancement-kazakhstan p {
    font-size: 0.95rem;
  }
}

/* Additional Section 2: Income Growth Factors */
.category-page-career-advancement-kazakhstan .additional-section-2-career-advancement-kazakhstan {
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .additional-section-2-career-advancement-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-career-advancement-kazakhstan .additional-section-2-career-advancement-kazakhstan {
    padding: 6rem 0;
  }
}

.category-page-career-advancement-kazakhstan .additional-content-2-career-advancement-kazakhstan h2 {
  font-size: 1.75rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .additional-content-2-career-advancement-kazakhstan h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.category-page-career-advancement-kazakhstan .additional-content-2-career-advancement-kazakhstan > p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .additional-content-2-career-advancement-kazakhstan > p {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}

.category-page-career-advancement-kazakhstan .factors-list-career-advancement-kazakhstan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .factors-list-career-advancement-kazakhstan {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .category-page-career-advancement-kazakhstan .factors-list-career-advancement-kazakhstan {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.category-page-career-advancement-kazakhstan .factor-item-career-advancement-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-right: 3px solid #f59e0b;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .factor-item-career-advancement-kazakhstan {
    padding: 2rem;
    gap: 1rem;
  }
}

.category-page-career-advancement-kazakhstan .factor-item-career-advancement-kazakhstan:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.15);
}

.category-page-career-advancement-kazakhstan .factor-item-career-advancement-kazakhstan h3 {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 700;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .factor-item-career-advancement-kazakhstan h3 {
    font-size: 1.25rem;
  }
}

.category-page-career-advancement-kazakhstan .factor-item-career-advancement-kazakhstan p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .factor-item-career-advancement-kazakhstan p {
    font-size: 0.95rem;
  }
}

/* General Styles */
.category-page-career-advancement-kazakhstan .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .category-page-career-advancement-kazakhstan .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .category-page-career-advancement-kazakhstan .container {
    padding: 0 3rem;
  }
}

/* Post Page 1 Styles */
.post-leadership-development-strategies {
      width: 100%;
    }

    /* Breadcrumbs */
    .leadership-development-strategies-breadcrumbs {
      background-color: var(--color-bg-light);
      padding: 1rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .leadership-development-strategies-breadcrumbs {
        padding: 1.5rem 0;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-breadcrumbs .container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .post-leadership-development-strategies .leadership-development-strategies-breadcrumbs a {
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 500;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-breadcrumbs a {
        font-size: 1rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-breadcrumbs a:hover {
      color: var(--color-primary-dark);
    }

    .post-leadership-development-strategies .leadership-development-strategies-breadcrumbs span {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      font-weight: 500;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-breadcrumbs span {
        font-size: 1rem;
      }
    }

    /* Hero Section */
    .leadership-development-strategies-hero {
      background: linear-gradient(135deg, var(--color-bg-darker) 0%, #1a2744 100%);
      padding: 4rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .leadership-development-strategies-hero {
        padding: 6rem 0;
      }
    }

    @media (min-width: 1024px) {
      .leadership-development-strategies-hero {
        padding: 8rem 0;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-hero-content {
        gap: 2rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-leadership-development-strategies .leadership-development-strategies-hero h1 {
        font-size: 3.5rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-hero-lead {
      color: #cbd5e1;
      font-size: 0.95rem;
      line-height: 1.7;
      max-width: 600px;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-hero-lead {
        font-size: 1.125rem;
      }
    }

    /* Content Sections */
    .leadership-development-strategies-content-1,
    .leadership-development-strategies-content-2,
    .leadership-development-strategies-content-3,
    .leadership-development-strategies-content-4 {
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .leadership-development-strategies-content-1,
      .leadership-development-strategies-content-2,
      .leadership-development-strategies-content-3,
      .leadership-development-strategies-content-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .leadership-development-strategies-content-1,
      .leadership-development-strategies-content-2,
      .leadership-development-strategies-content-3,
      .leadership-development-strategies-content-4 {
        padding: 6rem 0;
      }
    }

    /* Section 1 - Light */
    .leadership-development-strategies-content-1 {
      background-color: var(--color-bg-white);
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-1 h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-1 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-1 h2 {
        font-size: 2.75rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-1 p {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-1 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    /* Section 2 - Gray */
    .leadership-development-strategies-content-2 {
      background-color: var(--color-bg-gray);
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-2 h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-2 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-2 h2 {
        font-size: 2.75rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-2 p {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-2 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-2 ul {
      color: var(--color-text-secondary);
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-2 ul {
        padding-left: 2rem;
        margin-bottom: 2rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-2 li {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-2 li {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
    }

    /* Section 3 - Blue Accent */
    .leadership-development-strategies-content-3 {
      background-color: #f0f9ff;
      border-left: 4px solid var(--color-primary);
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-3 h2 {
      color: var(--color-primary-dark);
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-3 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-3 h2 {
        font-size: 2.75rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-3 p {
      color: #0c4a6e;
      font-size: 0.875rem;
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-3 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    /* Section 4 - White */
    .leadership-development-strategies-content-4 {
      background-color: var(--color-bg-white);
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-4 h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-4 h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-4 h2 {
        font-size: 2.75rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-4 p {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-4 p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-4 ol {
      color: var(--color-text-secondary);
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-4 ol {
        padding-left: 2rem;
        margin-bottom: 2rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-content-4 li {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-content-4 li {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
    }

    /* Disclaimer Section */
    .leadership-development-strategies-disclaimer {
      background-color: #fef3c7;
      border: 1px solid #fcd34d;
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .leadership-development-strategies-disclaimer {
        padding: 2rem;
        margin: 3rem 0;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-disclaimer-header {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-disclaimer-header {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-disclaimer-icon {
      color: #b45309;
      font-size: 24px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .post-leadership-development-strategies .leadership-development-strategies-disclaimer-title {
      color: #78350f;
      font-weight: 600;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-disclaimer-title {
        font-size: 1.25rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-disclaimer-text {
      color: #92400e;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-disclaimer-text {
        font-size: 0.95rem;
        line-height: 1.7;
      }
    }

    /* Related Posts Section */
    .leadership-development-strategies-related {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .leadership-development-strategies-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .leadership-development-strategies-related {
        padding: 6rem 0;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-related-title {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-related-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .post-leadership-development-strategies .leadership-development-strategies-related-title {
        font-size: 2.75rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-leadership-development-strategies .leadership-development-strategies-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: var(--color-bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-related-card {
        gap: 1.25rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-related-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .post-leadership-development-strategies .leadership-development-strategies-related-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background-color: var(--color-bg-gray);
    }

    .post-leadership-development-strategies .leadership-development-strategies-related-card-content {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-related-card-content {
        padding: 2rem;
        gap: 1rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-related-card-title {
      color: var(--color-text-primary);
      font-weight: 600;
      font-size: 1.125rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-related-card-title {
        font-size: 1.25rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-related-card-desc {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-related-card-desc {
        font-size: 0.95rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-related-card-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.875rem;
      text-decoration: none;
      transition: all 0.2s ease;
      align-self: flex-start;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-related-card-link {
        font-size: 0.95rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-related-card-link:hover {
      color: var(--color-primary-dark);
      transform: translateX(4px);
    }

    /* Highlight Box */
    .leadership-development-strategies-highlight {
      background-color: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .leadership-development-strategies-highlight {
        padding: 2rem;
        margin: 2rem 0;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-highlight h3 {
      color: var(--color-primary-dark);
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-highlight h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
      }
    }

    .post-leadership-development-strategies .leadership-development-strategies-highlight p {
      color: #0c4a6e;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-leadership-development-strategies .leadership-development-strategies-highlight p {
        font-size: 1rem;
      }
    }

    /* Image Styles */
    .leadership-development-strategies-section-image {
      width: 100%;
      max-height: 350px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .leadership-development-strategies-section-image {
        margin: 2rem 0;
        max-height: 400px;
      }
    }

/* Post Page 2 Styles */
/* ============================================
   POST: Professional Certification for Income
   ============================================ */

/* Breadcrumbs */
.professional-certification-income-breadcrumbs {
  background-color: var(--color-bg-gray);
  padding: 1rem 0;
  overflow: hidden;
}

.professional-certification-income-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .professional-certification-income-breadcrumbs {
    padding: 1.25rem 0;
  }

  .professional-certification-income-breadcrumbs .container {
    font-size: 1rem;
    gap: 0.75rem;
  }
}

.professional-certification-income-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.professional-certification-income-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.professional-certification-income-breadcrumbs span {
  color: var(--color-text-secondary);
}

.professional-certification-income-breadcrumb-separator {
  margin: 0 0.25rem;
  opacity: 0.6;
}

/* Hero Section */
.professional-certification-income-hero {
  background-color: #0f172a;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .professional-certification-income-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-hero {
    padding: 6rem 0;
  }
}

.professional-certification-income-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-hero-content {
    gap: 1.5rem;
  }
}

.professional-certification-income-hero h1 {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .professional-certification-income-hero h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-hero h1 {
    font-size: 3.5rem;
  }
}

.professional-certification-income-lead {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .professional-certification-income-lead {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.professional-certification-income-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.professional-certification-income-read-time {
  color: #94a3b8;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .professional-certification-income-read-time {
    font-size: 1rem;
  }
}

.professional-certification-income-read-time i {
  color: var(--color-accent);
}

/* Content Section 1 */
.professional-certification-income-content-1 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .professional-certification-income-content-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-content-1 {
    padding: 6rem 0;
  }
}

.professional-certification-income-content-1-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .professional-certification-income-content-1-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.professional-certification-income-content-1-text h2 {
  color: #1e293b;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-content-1-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-content-1-text h2 {
    font-size: 2.75rem;
  }
}

.professional-certification-income-content-1-text p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-content-1-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.professional-certification-income-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .professional-certification-income-list {
    gap: 1rem;
  }
}

.professional-certification-income-list li {
  color: #475569;
  font-size: 0.875rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .professional-certification-income-list li {
    font-size: 1rem;
  }
}

.professional-certification-income-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
  font-size: 1.25rem;
}

.professional-certification-income-content-1-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.professional-certification-income-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

/* Content Section 2 */
.professional-certification-income-content-2 {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .professional-certification-income-content-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-content-2 {
    padding: 6rem 0;
  }
}

.professional-certification-income-content-2-content {
  display: flex;
  flex-direction: column;
}

.professional-certification-income-content-2-content h2 {
  color: #1e293b;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-content-2-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-content-2-content h2 {
    font-size: 2.75rem;
  }
}

.professional-certification-income-content-2-content > p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .professional-certification-income-content-2-content > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.professional-certification-income-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.professional-certification-income-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .professional-certification-income-card {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

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

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

@media (min-width: 768px) {
  .professional-certification-income-card-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

.professional-certification-income-card h3 {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .professional-certification-income-card h3 {
    font-size: 1.5rem;
  }
}

.professional-certification-income-card p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .professional-certification-income-card p {
    font-size: 1rem;
  }
}

/* Disclaimer Section */
.professional-certification-income-disclaimer {
  background-color: #dbeafe;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .professional-certification-income-disclaimer {
    padding: 4rem 0;
  }
}

.professional-certification-income-disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .professional-certification-income-disclaimer-content {
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

.professional-certification-income-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 24px;
}

@media (min-width: 768px) {
  .professional-certification-income-disclaimer-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 28px;
  }
}

.professional-certification-income-disclaimer-text h3 {
  color: #1e40af;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .professional-certification-income-disclaimer-text h3 {
    font-size: 1.5rem;
  }
}

.professional-certification-income-disclaimer-text p {
  color: #1e40af;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .professional-certification-income-disclaimer-text p {
    font-size: 1rem;
  }
}

.professional-certification-income-disclaimer-text p:last-child {
  margin-bottom: 0;
}

/* Content Section 3 */
.professional-certification-income-content-3 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .professional-certification-income-content-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-content-3 {
    padding: 6rem 0;
  }
}

.professional-certification-income-content-3-content {
  display: flex;
  flex-direction: column;
}

.professional-certification-income-content-3-content h2 {
  color: #1e293b;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-content-3-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-content-3-content h2 {
    font-size: 2.75rem;
  }
}

.professional-certification-income-content-3-content > p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .professional-certification-income-content-3-content > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.professional-certification-income-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-steps {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-steps {
    gap: 2rem;
  }
}

.professional-certification-income-step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .professional-certification-income-step {
    padding: 2rem;
    gap: 1rem;
  }
}

.professional-certification-income-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .professional-certification-income-step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

.professional-certification-income-step h4 {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .professional-certification-income-step h4 {
    font-size: 1.25rem;
  }
}

.professional-certification-income-step p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .professional-certification-income-step p {
    font-size: 1rem;
  }
}

/* Content Section 4 */
.professional-certification-income-content-4 {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .professional-certification-income-content-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-content-4 {
    padding: 6rem 0;
  }
}

.professional-certification-income-content-4-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .professional-certification-income-content-4-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.professional-certification-income-content-4-text h2 {
  color: #1e293b;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-content-4-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-content-4-text h2 {
    font-size: 2.75rem;
  }
}

.professional-certification-income-content-4-text p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-content-4-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.professional-certification-income-content-4-text h3 {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .professional-certification-income-content-4-text h3 {
    font-size: 1.25rem;
  }
}

.professional-certification-income-benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .professional-certification-income-benefits-list {
    gap: 1rem;
  }
}

.professional-certification-income-benefits-list li {
  color: #475569;
  font-size: 0.875rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .professional-certification-income-benefits-list li {
    font-size: 1rem;
  }
}

.professional-certification-income-benefits-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.125rem;
}

.professional-certification-income-benefits-list strong {
  color: #1e293b;
  font-weight: 600;
}

/* Conclusion Section */
.professional-certification-income-conclusion {
  background-color: #0f172a;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .professional-certification-income-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-conclusion {
    padding: 6rem 0;
  }
}

.professional-certification-income-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-conclusion-content {
    gap: 1.5rem;
    max-width: 800px;
  }
}

.professional-certification-income-conclusion-content h2 {
  color: #ffffff;
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .professional-certification-income-conclusion-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-conclusion-content h2 {
    font-size: 2.75rem;
  }
}

.professional-certification-income-conclusion-content p {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .professional-certification-income-conclusion-content p {
    font-size: 1rem;
  }
}

/* Related Posts Section */
.professional-certification-income-related {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .professional-certification-income-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-related {
    padding: 6rem 0;
  }
}

.professional-certification-income-related-content {
  display: flex;
  flex-direction: column;
}

.professional-certification-income-related-content h2 {
  color: #1e293b;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .professional-certification-income-related-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

.professional-certification-income-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .professional-certification-income-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.professional-certification-income-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .professional-certification-income-related-card {
    gap: 1.25rem;
  }
}

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

.professional-certification-income-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (min-width: 768px) {
  .professional-certification-income-related-card-image {
    height: 220px;
  }
}

.professional-certification-income-related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.professional-certification-income-related-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

@media (min-width: 768px) {
  .professional-certification-income-related-card-content {
    padding: 1.25rem;
    gap: 1rem;
  }
}

.professional-certification-income-related-card h3 {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .professional-certification-income-related-card h3 {
    font-size: 1.25rem;
  }
}

.professional-certification-income-related-card p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .professional-certification-income-related-card p {
    font-size: 1rem;
  }
}

.professional-certification-income-related-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .professional-certification-income-related-link {
    font-size: 1rem;
  }
}

.professional-certification-income-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.professional-certification-income-related-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.professional-certification-income-related-link:hover i {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .professional-certification-income-content-4-wrapper {
    flex-direction: column-reverse;
  }
}

/* Post Page 3 Styles */
/* ========================================
   Post: Mentorship Career Advancement
   ======================================== */

.post-mentorship-career-advancement {
  width: 100%;
}

/* Breadcrumbs Navigation */
.post-mentorship-career-advancement .mentorship-career-advancement-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1.5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-breadcrumbs {
    padding: 2rem 0;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-breadcrumbs-content {
    font-size: 1rem;
    gap: 1rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-breadcrumb-link {
  color: var(--color-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.post-mentorship-career-advancement .mentorship-career-advancement-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-mentorship-career-advancement .mentorship-career-advancement-breadcrumb-separator {
  color: var(--color-text-secondary);
  opacity: 0.6;
}

.post-mentorship-career-advancement .mentorship-career-advancement-breadcrumb-current {
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* Hero Section */
.post-mentorship-career-advancement .mentorship-career-advancement-hero {
  background-color: var(--color-primary);
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-hero {
    padding: 6rem 0;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-hero-content {
    gap: 2rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-hero-title {
  color: var(--color-bg-white);
  font-size: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-hero-title {
    font-size: 3.5rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-hero-lead {
  color: var(--color-text-light);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-hero-lead {
    font-size: 1rem;
    max-width: 600px;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-hero-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.post-mentorship-career-advancement .mentorship-career-advancement-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-lighter);
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-meta-item {
    font-size: 0.875rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-meta-item i {
  font-size: 14px;
}

/* Introduction Section */
.post-mentorship-career-advancement .mentorship-career-advancement-intro {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-intro {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-intro {
    padding: 5rem 0;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-intro-content {
    gap: 2rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-intro-title {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-intro-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-intro-title {
    font-size: 2.75rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-intro-text p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-intro-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-intro-text p:last-child {
  margin-bottom: 0;
}

/* Benefits Section */
.post-mentorship-career-advancement .mentorship-career-advancement-benefits {
  background-color: var(--color-bg-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefits {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefits {
    padding: 5rem 0;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-benefits-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefits-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefits-content {
    gap: 3rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-benefits-title {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefits-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefits-title {
    font-size: 2.75rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefit-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-mentorship-career-advancement .mentorship-career-advancement-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 24px;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefit-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-benefit-heading {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefit-heading {
    font-size: 1.25rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-benefit-text {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-benefit-text {
    font-size: 1rem;
  }
}

/* Mechanism Section */
.post-mentorship-career-advancement .mentorship-career-advancement-mechanism {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism {
    padding: 5rem 0;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-mechanism-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism-content {
    gap: 3rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-mechanism-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism-text {
    gap: 1.5rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-mechanism-title {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism-title {
    font-size: 2.5rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-mechanism-text p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism-text p {
    font-size: 1rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-mechanism-subheading {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism-subheading {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-mechanism-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.5rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism-list {
    gap: 1rem;
    padding-left: 2rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-mechanism-list li {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-mechanism-list li {
    font-size: 1rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-mechanism-list strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.post-mentorship-career-advancement .mentorship-career-advancement-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Disclaimer Section */
.post-mentorship-career-advancement .mentorship-career-advancement-disclaimer {
  background-color: var(--color-bg-light);
  padding: 2.5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-disclaimer {
    padding: 3.5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-disclaimer {
    padding: 4rem 0;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-disclaimer-content {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--color-bg-white);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-disclaimer-content {
    gap: 2rem;
    padding: 2rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-disclaimer-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 24px;
  flex-shrink: 0;
}

.post-mentorship-career-advancement .mentorship-career-advancement-disclaimer-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-mentorship-career-advancement .mentorship-career-advancement-disclaimer-title {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-disclaimer-title {
    font-size: 1.25rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-disclaimer-text p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-disclaimer-text p {
    font-size: 1rem;
  }
}

/* Tips Section */
.post-mentorship-career-advancement .mentorship-career-advancement-tips {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tips {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tips {
    padding: 5rem 0;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-tips-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tips-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tips-content {
    gap: 3rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-tips-title {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tips-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tips-title {
    font-size: 2.75rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-tips-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tips-list {
    gap: 2rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-tip-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tip-item {
    gap: 2rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-tip-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tip-number {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-tip-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.post-mentorship-career-advancement .mentorship-career-advancement-tip-heading {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tip-heading {
    font-size: 1.25rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-tip-text {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-tip-text {
    font-size: 1rem;
  }
}

/* Conclusion Section */
.post-mentorship-career-advancement .mentorship-career-advancement-conclusion {
  background-color: var(--color-bg-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-conclusion {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-conclusion {
    padding: 5rem 0;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-conclusion-content {
    gap: 2rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-conclusion-title {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-conclusion-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-conclusion-title {
    font-size: 2.75rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-conclusion-content p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-conclusion-content p {
    font-size: 1rem;
  }
}

/* Related Posts Section */
.post-mentorship-career-advancement .mentorship-career-advancement-related {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related {
    padding: 5rem 0;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-content {
    gap: 3rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-title {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-title {
    font-size: 2.75rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-card {
    gap: 1.25rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-body {
    padding: 1.5rem;
    gap: 1rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-heading {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-heading {
    font-size: 1.25rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-description {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-description {
    font-size: 0.9375rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

@media (min-width: 768px) {
  .post-mentorship-career-advancement .mentorship-career-advancement-related-link {
    font-size: 0.9375rem;
  }
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-mentorship-career-advancement .mentorship-career-advancement-related-link i {
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Post Page 4 Styles */
/* Salary Negotiation Techniques Post - Complete CSS Isolation */

  .post-salary-negotiation-techniques {
    width: 100%;
    background-color: var(--color-bg-white);
  }

  /* ===== BREADCRUMBS ===== */
  .post-salary-negotiation-techniques .salary-negotiation-techniques-breadcrumbs {
    background-color: var(--color-bg-gray);
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-breadcrumbs-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-breadcrumbs-content {
      font-size: 1rem;
      gap: 0.75rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-breadcrumb-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-breadcrumb-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-breadcrumb-separator {
    color: var(--color-text-secondary);
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-breadcrumb-current {
    color: var(--color-text-primary);
    font-weight: 600;
  }

  /* ===== HERO SECTION ===== */
  .post-salary-negotiation-techniques .salary-negotiation-techniques-hero {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-hero {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-hero {
      padding: 6rem 0;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-hero-content {
      gap: 2rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-hero-title {
      font-size: 2.75rem;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-hero-title {
      font-size: 3.25rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-hero-lead {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.7;
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-hero-lead {
      font-size: 1.1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-meta-item {
      font-size: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-meta-item i {
    font-size: 1rem;
  }

  /* ===== CONTENT SECTION 1 ===== */
  .post-salary-negotiation-techniques .salary-negotiation-techniques-section-1 {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-1 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-1 {
      padding: 6rem 0;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-content-1 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-content-1 {
      gap: 2rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-title {
      font-size: 2.75rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-text {
      font-size: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-section-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-image {
      max-height: 400px;
    }
  }

  /* ===== DISCLAIMER SECTION ===== */
  .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer {
    background-color: #f0f4ff;
    padding: 2rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer {
      padding: 3rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer {
      padding: 4rem 0;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer-content {
      flex-direction: row;
      gap: 1.5rem;
      align-items: flex-start;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer-icon {
      width: 56px;
      height: 56px;
      min-width: 56px;
      font-size: 1.75rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer-title {
      font-size: 1.25rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer-body {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-disclaimer-body {
      font-size: 1rem;
    }
  }

  /* ===== CONTENT SECTION 2 ===== */
  .post-salary-negotiation-techniques .salary-negotiation-techniques-section-2 {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-2 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-2 {
      padding: 6rem 0;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-content-2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-content-2 {
      gap: 2.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-step-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-primary);
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-step-card {
      padding: 2rem;
      gap: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.25rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-step-number {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-step-title {
      font-size: 1.25rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-step-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-step-text {
      font-size: 1rem;
    }
  }

  /* ===== CONTENT SECTION 3 ===== */
  .post-salary-negotiation-techniques .salary-negotiation-techniques-section-3 {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-3 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-3 {
      padding: 6rem 0;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-content-3 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-content-3 {
      gap: 2.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-strategy-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-strategy-list {
      gap: 2rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-strategy-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: #f8fafe;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-strategy-item {
      padding: 1.75rem;
      gap: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-strategy-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-strategy-title {
      font-size: 1.25rem;
      gap: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-strategy-title i {
    color: var(--color-accent);
    font-size: 1.5rem;
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-strategy-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-strategy-text {
      font-size: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-section-image-2 {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-image-2 {
      max-height: 400px;
      margin-top: 1.5rem;
    }
  }

  /* ===== CONTENT SECTION 4 ===== */
  .post-salary-negotiation-techniques .salary-negotiation-techniques-section-4 {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-4 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-4 {
      padding: 6rem 0;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-content-4 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-content-4 {
      gap: 2.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-two-column {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-column-left,
  .post-salary-negotiation-techniques .salary-negotiation-techniques-column-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-column-left,
    .post-salary-negotiation-techniques .salary-negotiation-techniques-column-right {
      gap: 1.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-subsection-title {
      font-size: 1.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-list {
      gap: 1rem;
      padding-left: 2rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-list-item {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-list-item {
      font-size: 1rem;
    }
  }

  /* ===== CONTENT SECTION 5 ===== */
  .post-salary-negotiation-techniques .salary-negotiation-techniques-section-5 {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-5 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-section-5 {
      padding: 6rem 0;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-content-5 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-content-5 {
      gap: 2.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-mistakes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-mistakes-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.75rem;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-mistakes-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-mistake-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-mistake-card {
      padding: 2rem;
      gap: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-mistake-card:hover {
    border-color: var(--color-warning);
    box-shadow: var(--shadow-md);
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-mistake-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--color-warning);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-mistake-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-mistake-title {
      font-size: 1.25rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-mistake-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-mistake-text {
      font-size: 1rem;
    }
  }

  /* ===== CONCLUSION SECTION ===== */
  .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion {
      padding: 6rem 0;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion-content {
      gap: 2.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion-title {
      font-size: 2.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion-box {
      padding: 2.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion-text {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-conclusion-text {
      font-size: 1.1rem;
    }
  }

  /* ===== RELATED POSTS SECTION ===== */
  .post-salary-negotiation-techniques .salary-negotiation-techniques-related {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related {
      padding: 6rem 0;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-content {
      gap: 2.5rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-title {
      font-size: 2.25rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.75rem;
    }
  }

  @media (min-width: 1024px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-card {
      gap: 1.25rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-image {
      height: 220px;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-body {
      padding: 1.75rem;
      gap: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.4;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-card-title {
      font-size: 1.25rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-card-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-card-text {
      font-size: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-link {
      font-size: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-link:hover {
    color: var(--color-primary-dark);
    gap: 0.75rem;
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
  }

  @media (min-width: 768px) {
    .post-salary-negotiation-techniques .salary-negotiation-techniques-related-link i {
      font-size: 1rem;
    }
  }

  .post-salary-negotiation-techniques .salary-negotiation-techniques-related-link:hover i {
    transform: translateX(4px);
  }

/* Post Page 5 Styles */
.post-professional-networking-success {
      width: 100%;
    }

    /* Breadcrumbs */
    .professional-networking-success-breadcrumbs {
      background-color: var(--color-bg-light);
      padding: 1rem 0;
      overflow: hidden;
    }

    .professional-networking-success-breadcrumbs .container {
      padding: 0 var(--spacing-md);
    }

    @media (min-width: 768px) {
      .professional-networking-success-breadcrumbs .container {
        padding: 0 var(--spacing-lg);
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-breadcrumbs .container {
        padding: 0 var(--spacing-xl);
      }
    }

    .professional-networking-success-breadcrumbs-content {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      flex-wrap: wrap;
    }

    @media (min-width: 768px) {
      .professional-networking-success-breadcrumbs-content {
        font-size: 1rem;
      }
    }

    .professional-networking-success-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .professional-networking-success-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .professional-networking-success-breadcrumbs span {
      color: var(--color-text-secondary);
      font-weight: 500;
    }

    /* Hero Section */
    .professional-networking-success-hero {
      background-color: #1a2a4a;
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .professional-networking-success-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-hero {
        padding: 6rem 0;
      }
    }

    .professional-networking-success-hero .container {
      padding: 0 var(--spacing-md);
    }

    @media (min-width: 768px) {
      .professional-networking-success-hero .container {
        padding: 0 var(--spacing-lg);
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-hero .container {
        padding: 0 var(--spacing-xl);
      }
    }

    .professional-networking-success-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
    }

    @media (min-width: 1024px) {
      .professional-networking-success-hero-content {
        gap: 2rem;
        max-width: 800px;
      }
    }

    .professional-networking-success-hero h1 {
      color: #ffffff;
      font-size: 2rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .professional-networking-success-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-hero h1 {
        font-size: 3.5rem;
      }
    }

    .professional-networking-success-hero-lead {
      color: #cbd5e1;
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .professional-networking-success-hero-lead {
        font-size: 1.125rem;
      }
    }

    /* Section 1 */
    .professional-networking-success-section-1 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-1 {
        padding: 6rem 0;
      }
    }

    .professional-networking-success-section-1 .container {
      padding: 0 var(--spacing-md);
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-1 .container {
        padding: 0 var(--spacing-lg);
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-1 .container {
        padding: 0 var(--spacing-xl);
      }
    }

    .professional-networking-success-section-1-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-1-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .professional-networking-success-section-1 h2 {
      color: #1a1a1a;
      font-size: 1.75rem;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-1 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-1 h2 {
        font-size: 2.75rem;
      }
    }

    .professional-networking-success-section-1 p {
      color: #475569;
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-1 p {
        font-size: 1rem;
      }
    }

    .professional-networking-success-section-1 ul {
      color: #475569;
      padding-left: 1.5rem;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-1 ul {
        padding-left: 2rem;
      }
    }

    .professional-networking-success-section-1 li {
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-1 li {
        font-size: 1rem;
      }
    }

    .professional-networking-success-section-1-image {
      width: 100%;
      max-height: 350px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    /* Section 2 */
    .professional-networking-success-section-2 {
      background-color: #f1f5f9;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-2 {
        padding: 6rem 0;
      }
    }

    .professional-networking-success-section-2 .container {
      padding: 0 var(--spacing-md);
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-2 .container {
        padding: 0 var(--spacing-lg);
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-2 .container {
        padding: 0 var(--spacing-xl);
      }
    }

    .professional-networking-success-section-2-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-2-content {
        gap: 2rem;
        max-width: 900px;
      }
    }

    .professional-networking-success-section-2 h2 {
      color: #1a1a1a;
      font-size: 1.75rem;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-2 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-2 h2 {
        font-size: 2.75rem;
      }
    }

    .professional-networking-success-section-2 p {
      color: #475569;
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-2 p {
        font-size: 1rem;
      }
    }

    .professional-networking-success-highlight-box {
      background-color: #ffffff;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .professional-networking-success-highlight-box {
        padding: 2rem;
        margin: 2rem 0;
      }
    }

    .professional-networking-success-highlight-box h4 {
      color: var(--color-primary);
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .professional-networking-success-highlight-box h4 {
        font-size: 1.25rem;
      }
    }

    .professional-networking-success-highlight-box p {
      color: #475569;
      font-size: 0.875rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .professional-networking-success-highlight-box p {
        font-size: 1rem;
      }
    }

    /* Section 3 */
    .professional-networking-success-section-3 {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-3 {
        padding: 6rem 0;
      }
    }

    .professional-networking-success-section-3 .container {
      padding: 0 var(--spacing-md);
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-3 .container {
        padding: 0 var(--spacing-lg);
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-3 .container {
        padding: 0 var(--spacing-xl);
      }
    }

    .professional-networking-success-section-3-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-3-content {
        gap: 2rem;
        max-width: 900px;
      }
    }

    .professional-networking-success-section-3 h2 {
      color: #1a1a1a;
      font-size: 1.75rem;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-3 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-section-3 h2 {
        font-size: 2.75rem;
      }
    }

    .professional-networking-success-section-3 p {
      color: #475569;
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .professional-networking-success-section-3 p {
        font-size: 1rem;
      }
    }

    .professional-networking-success-tips-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .professional-networking-success-tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem 0;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-tips-grid {
        gap: 2rem;
      }
    }

    .professional-networking-success-tip-card {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.25rem;
      background-color: #f8fafc;
      border-radius: var(--radius-lg);
      border: 1px solid #e2e8f0;
      transition: all 0.3s ease;
    }

    @media (min-width: 768px) {
      .professional-networking-success-tip-card {
        padding: 1.5rem;
        gap: 1rem;
      }
    }

    .professional-networking-success-tip-card:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--color-primary);
    }

    .professional-networking-success-tip-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: #dbeafe;
      color: var(--color-primary);
      border-radius: var(--radius-md);
      font-size: 20px;
    }

    .professional-networking-success-tip-card h4 {
      color: #1a1a1a;
      font-size: 1.125rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .professional-networking-success-tip-card h4 {
        font-size: 1.25rem;
      }
    }

    .professional-networking-success-tip-card p {
      color: #475569;
      font-size: 0.875rem;
      margin: 0;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .professional-networking-success-tip-card p {
        font-size: 0.95rem;
      }
    }

    /* Disclaimer Section */
    .professional-networking-success-disclaimer {
      background-color: #eff6ff;
      padding: 3rem 0;
      overflow: hidden;
      border-top: 1px solid #bfdbfe;
      border-bottom: 1px solid #bfdbfe;
    }

    @media (min-width: 768px) {
      .professional-networking-success-disclaimer {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-disclaimer {
        padding: 5rem 0;
      }
    }

    .professional-networking-success-disclaimer .container {
      padding: 0 var(--spacing-md);
    }

    @media (min-width: 768px) {
      .professional-networking-success-disclaimer .container {
        padding: 0 var(--spacing-lg);
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-disclaimer .container {
        padding: 0 var(--spacing-xl);
      }
    }

    .professional-networking-success-disclaimer-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    @media (min-width: 768px) {
      .professional-networking-success-disclaimer-content {
        gap: 1.5rem;
      }
    }

    .professional-networking-success-disclaimer-header {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 1rem;
    }

    .professional-networking-success-disclaimer-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background-color: var(--color-primary);
      color: #ffffff;
      border-radius: var(--radius-md);
      flex-shrink: 0;
      font-size: 24px;
    }

    .professional-networking-success-disclaimer-header h3 {
      color: var(--color-primary);
      font-size: 1.25rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .professional-networking-success-disclaimer-header h3 {
        font-size: 1.5rem;
      }
    }

    .professional-networking-success-disclaimer p {
      color: #1e3a8a;
      font-size: 0.875rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (min-width: 768px) {
      .professional-networking-success-disclaimer p {
        font-size: 0.95rem;
      }
    }

    /* Related Posts */
    .professional-networking-success-related {
      background-color: #f8fafc;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .professional-networking-success-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-related {
        padding: 6rem 0;
      }
    }

    .professional-networking-success-related .container {
      padding: 0 var(--spacing-md);
    }

    @media (min-width: 768px) {
      .professional-networking-success-related .container {
        padding: 0 var(--spacing-lg);
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-related .container {
        padding: 0 var(--spacing-xl);
      }
    }

    .professional-networking-success-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .professional-networking-success-related-header {
      text-align: center;
    }

    .professional-networking-success-related h2 {
      color: #1a1a1a;
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .professional-networking-success-related h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-related h2 {
        font-size: 2.75rem;
      }
    }

    .professional-networking-success-related-description {
      color: #475569;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .professional-networking-success-related-description {
        font-size: 1rem;
      }
    }

    .professional-networking-success-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .professional-networking-success-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .professional-networking-success-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .professional-networking-success-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: #ffffff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .professional-networking-success-related-card {
        gap: 1.25rem;
      }
    }

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

    .professional-networking-success-related-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background-color: #e2e8f0;
    }

    .professional-networking-success-related-card-content {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.25rem;
    }

    @media (min-width: 768px) {
      .professional-networking-success-related-card-content {
        padding: 1.5rem;
        gap: 1rem;
      }
    }

    .professional-networking-success-related-card-title {
      color: #1a1a1a;
      font-size: 1.125rem;
      font-weight: 600;
      line-height: 1.3;
      margin: 0;
    }

    @media (min-width: 768px) {
      .professional-networking-success-related-card-title {
        font-size: 1.25rem;
      }
    }

    .professional-networking-success-related-card-description {
      color: #475569;
      font-size: 0.8125rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .professional-networking-success-related-card-description {
        font-size: 0.875rem;
      }
    }

    .professional-networking-success-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
      margin-top: 0.5rem;
    }

    @media (min-width: 768px) {
      .professional-networking-success-related-card-link {
        font-size: 0.9375rem;
      }
    }

    .professional-networking-success-related-card-link:hover {
      color: var(--color-primary-dark);
      gap: 0.75rem;
    }

/* Privacy Page Styles */
.info-portal {
  font-family: var(--font-body);
  color: var(--color-text-primary);
}

.info-portal section {
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .info-portal section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .info-portal section {
    padding: 6rem 0;
  }
}

.info-portal .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .info-portal .container {
    padding: 0 var(--spacing-lg);
  }
}

.info-portal-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.info-portal h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 var(--spacing-md) 0;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .info-portal h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .info-portal h1 {
    font-size: 3rem;
  }
}

.info-portal .updated-date {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
}

.info-portal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: var(--spacing-lg) 0 var(--spacing-md) 0;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .info-portal h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .info-portal h2 {
    font-size: 2.25rem;
  }
}

.info-portal p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-md) 0;
}

@media (min-width: 768px) {
  .info-portal p {
    font-size: 1rem;
  }
}

.info-portal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md) 0;
}

.info-portal li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
}

@media (min-width: 768px) {
  .info-portal li {
    font-size: 1rem;
  }
}

.info-portal li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.info-portal-hero {
  background-color: var(--color-bg-light);
}

.info-portal-hero h1 {
  color: var(--color-text-primary);
}

.info-portal-hero .updated-date {
  color: var(--color-text-secondary);
}

.info-portal-content-section {
  background-color: var(--color-bg-white);
}

.info-portal-content-section h2 {
  color: var(--color-text-primary);
}

.info-portal-content-section p {
  color: var(--color-text-secondary);
}

.info-portal-content-section li {
  color: var(--color-text-secondary);
}

.contact-section {
  background-color: var(--color-bg-gray);
}

.contact-section h2 {
  color: var(--color-text-primary);
}

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

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

.contact-item-label {
  font-weight: 700;
  color: var(--color-text-primary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .contact-item-label {
    font-size: 1rem;
  }
}

.contact-item-value {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .contact-item-value {
    font-size: 1rem;
  }
}

/* Thank You Page Styles */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #dbeafe;
    --color-accent: #f59e0b;
    --color-accent-dark: #d97706;
    --color-success: #10b981;
    --color-warning: #ef4444;
    --color-bg-dark: #0f172a;
    --color-bg-darker: #020617;
    --color-bg-light: #f8fafc;
    --color-bg-white: #ffffff;
    --color-bg-gray: #f1f5f9;
    --color-text-primary: #1e293b;
    --color-text-secondary: #475569;
    --color-text-light: #e2e8f0;
    --color-text-lighter: #cbd5e1;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --icon-sm: 20px;
    --icon-md: 32px;
    --icon-lg: 48px;
    --icon-xl: 64px;
  }

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

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

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }

  /* Hero Section */
  .thank-hero-section {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    padding: 4rem var(--spacing-md) 3rem;
    overflow: hidden;
  }

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--color-success);
    border-radius: 50%;
    animation: scaleIn 0.6s ease-out;
  }

  .thank-icon i {
    font-size: 40px;
    color: var(--color-bg-white);
  }

  .thank-hero-section h1 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-bg-white);
    margin-top: var(--spacing-md);
  }

  .thank-lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
  }

  .thank-description {
    font-size: 0.95rem;
    color: var(--color-text-lighter);
    max-width: 600px;
    line-height: 1.7;
  }

  /* Content Section */
  .thank-content-section {
    background-color: var(--color-bg-light);
    padding: 3rem var(--spacing-md);
    overflow: hidden;
  }

  .thank-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
  }

  .thank-info-card,
  .thank-benefits-card {
    background-color: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
  }

  .thank-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
  }

  .thank-card-icon i {
    font-size: 28px;
    color: var(--color-primary);
  }

  .thank-info-card h2,
  .thank-benefits-card h3 {
    color: var(--color-text-primary);
    font-family: var(--font-display);
    margin-bottom: var(--spacing-md);
    font-size: 1.75rem;
  }

  .thank-benefits-card h3 {
    font-size: 1.5rem;
  }

  .thank-info-card p,
  .thank-benefits-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
  }

  .thank-list,
  .thank-benefits-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
  }

  .thank-list li,
  .thank-benefits-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-md);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .thank-list i,
  .thank-benefits-list i {
    color: var(--color-success);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .thank-timeline {
    background-color: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-weight: 500;
    text-align: center;
    margin-top: var(--spacing-lg);
  }

  /* Button */
  .thank-btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
  }

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

  /* Animations */
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Responsive - Mobile */
  @media (max-width: 767px) {
    .thank-hero-section {
      padding: 2.5rem var(--spacing-md) 2rem;
    }

    .thank-hero-section h1 {
      font-size: 1.875rem;
    }

    .thank-lead {
      font-size: 1rem;
    }

    .thank-description {
      font-size: 0.875rem;
    }

    .thank-content-section {
      padding: 2rem var(--spacing-md);
    }

    .thank-content {
      gap: var(--spacing-lg);
      margin-bottom: var(--spacing-xl);
    }

    .thank-info-card,
    .thank-benefits-card {
      padding: 1.5rem;
    }

    .thank-info-card h2,
    .thank-benefits-card h3 {
      font-size: 1.375rem;
      margin-bottom: var(--spacing-sm);
    }

    .thank-card-icon {
      width: 48px;
      height: 48px;
    }

    .thank-card-icon i {
      font-size: 24px;
    }

    .thank-icon {
      width: 64px;
      height: 64px;
    }

    .thank-icon i {
      font-size: 32px;
    }

    .thank-btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.95rem;
      width: 100%;
    }

    .thank-list li,
    .thank-benefits-list li {
      font-size: 0.875rem;
      gap: var(--spacing-sm);
    }
  }

  /* Responsive - Tablet */
  @media (min-width: 768px) and (max-width: 1023px) {
    .thank-hero-section {
      padding: 3.5rem var(--spacing-md) 2.5rem;
    }

    .thank-hero-section h1 {
      font-size: 2rem;
    }

    .thank-content {
      gap: var(--spacing-lg);
      margin-bottom: var(--spacing-xl);
    }

    .thank-info-card,
    .thank-benefits-card {
      padding: 1.75rem;
    }

    .thank-info-card h2,
    .thank-benefits-card h3 {
      font-size: 1.5rem;
    }

    .thank-btn {
      padding: 0.875rem 2rem;
      width: auto;
    }
  }

  /* Responsive - Desktop */
  @media (min-width: 1024px) {
    .thank-hero-section {
      padding: 5rem var(--spacing-md) 4rem;
    }

    .thank-hero-section h1 {
      font-size: 2.75rem;
    }

    .thank-lead {
      font-size: 1.25rem;
    }

    .thank-description {
      font-size: 1rem;
    }

    .thank-content-section {
      padding: 4rem var(--spacing-md);
    }

    .thank-content {
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-2xl);
      margin-bottom: var(--spacing-3xl);
    }

    .thank-info-card,
    .thank-benefits-card {
      padding: 2.5rem;
    }

    .thank-info-card h2,
    .thank-benefits-card h3 {
      font-size: 1.875rem;
    }

    .thank-icon {
      width: 100px;
      height: 100px;
    }

    .thank-icon i {
      font-size: 50px;
    }

    .thank-btn {
      padding: 1rem 2.5rem;
      font-size: 1rem;
    }
  }

/* 404 Page Styles */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-primary-light: #dbeafe;
    --color-accent: #f59e0b;
    --color-accent-dark: #d97706;
    --color-success: #10b981;
    --color-warning: #ef4444;
    --color-bg-dark: #0f172a;
    --color-bg-darker: #020617;
    --color-bg-light: #f8fafc;
    --color-bg-white: #ffffff;
    --color-bg-gray: #f1f5f9;
    --color-text-primary: #1e293b;
    --color-text-secondary: #475569;
    --color-text-light: #e2e8f0;
    --color-text-lighter: #cbd5e1;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --icon-sm: 20px;
    --icon-md: 32px;
    --icon-lg: 48px;
    --icon-xl: 64px;
  }

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

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

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }

  .error-page {
    background-color: var(--color-bg-light);
  }

  /* ========== ERROR HERO SECTION ========== */
  .error-hero-section {
    background: linear-gradient(135deg, var(--color-bg-white) 0%, var(--color-bg-light) 100%);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
  }

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

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

  .error-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    align-items: center;
  }

  @media (min-width: 1024px) {
    .error-hero-content {
      flex-direction: row;
      gap: var(--spacing-3xl);
      align-items: center;
    }
  }

  /* ========== ILLUSTRATION ========== */
  .error-illustration {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .error-illustration {
      height: 350px;
    }
  }

  @media (min-width: 1024px) {
    .error-illustration {
      width: 45%;
      height: 400px;
      flex-shrink: 0;
    }
  }

  .illustration-404 {
    position: absolute;
    display: flex;
    gap: 0.5rem;
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-display);
    z-index: 1;
  }

  @media (min-width: 768px) {
    .illustration-404 {
      font-size: 6rem;
      gap: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .illustration-404 {
      font-size: 8rem;
    }
  }

  .digit {
    color: var(--color-primary);
    opacity: 0.15;
    animation: float 3s ease-in-out infinite;
  }

  .digit-0 {
    animation-delay: 0.5s;
  }

  .digit-4-second {
    animation-delay: 1s;
  }

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

  /* Character illustration */
  .illustration-character {
    position: absolute;
    width: 120px;
    height: 160px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 2s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .illustration-character {
      width: 140px;
      height: 180px;
    }
  }

  @media (min-width: 1024px) {
    .illustration-character {
      width: 160px;
      height: 200px;
    }
  }

  @keyframes bounce {
    0%, 100% {
      transform: translate(-50%, -50%);
    }
    50% {
      transform: translate(-50%, -70px);
    }
  }

  .character-head {
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: var(--color-accent);
    border-radius: 50%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .character-head {
      width: 50px;
      height: 50px;
      top: 5px;
    }
  }

  @media (min-width: 1024px) {
    .character-head {
      width: 55px;
      height: 55px;
    }
  }

  .character-face {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .character-eye {
    position: absolute;
    width: 6px;
    height: 8px;
    background-color: var(--color-bg-darker);
    border-radius: 50%;
    top: 15px;
  }

  @media (min-width: 768px) {
    .character-eye {
      width: 7px;
      height: 10px;
      top: 16px;
    }
  }

  .eye-left {
    left: 12px;
  }

  .eye-right {
    right: 12px;
  }

  .character-mouth {
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: var(--color-bg-darker);
    border-radius: 2px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  @media (min-width: 768px) {
    .character-mouth {
      width: 14px;
      bottom: 11px;
    }
  }

  .character-body {
    position: absolute;
    width: 35px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 8px;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
  }

  @media (min-width: 768px) {
    .character-body {
      width: 40px;
      height: 55px;
      top: 60px;
      border-radius: 10px;
    }
  }

  @media (min-width: 1024px) {
    .character-body {
      width: 45px;
      height: 60px;
      top: 65px;
    }
  }

  .character-arm {
    position: absolute;
    width: 30px;
    height: 12px;
    background-color: var(--color-accent);
    border-radius: 6px;
    top: 65px;
    animation: wave 1.5s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .character-arm {
      width: 35px;
      height: 14px;
      top: 70px;
      border-radius: 7px;
    }
  }

  @media (min-width: 1024px) {
    .character-arm {
      width: 40px;
      height: 15px;
      top: 75px;
      border-radius: 8px;
    }
  }

  .arm-left {
    left: -30px;
  }

  .arm-right {
    right: -30px;
    animation-delay: 0.3s;
  }

  @keyframes wave {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(-30deg);
    }
  }

  .character-leg {
    position: absolute;
    width: 12px;
    height: 35px;
    background-color: var(--color-primary);
    border-radius: 6px;
    top: 105px;
  }

  @media (min-width: 768px) {
    .character-leg {
      width: 14px;
      height: 40px;
      top: 115px;
    }
  }

  @media (min-width: 1024px) {
    .character-leg {
      width: 15px;
      height: 45px;
      top: 125px;
      border-radius: 7px;
    }
  }

  .leg-left {
    left: 20px;
  }

  .leg-right {
    right: 20px;
  }

  .floating-objects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .object {
    position: absolute;
    border-radius: 50%;
    animation: float-object 4s ease-in-out infinite;
  }

  .object-1 {
    width: 20px;
    height: 20px;
    background-color: var(--color-success);
    top: 20px;
    left: 10%;
    opacity: 0.6;
  }

  .object-2 {
    width: 15px;
    height: 15px;
    background-color: var(--color-warning);
    top: 60px;
    right: 15%;
    opacity: 0.5;
    animation-delay: 0.5s;
  }

  .object-3 {
    width: 18px;
    height: 18px;
    background-color: var(--color-primary);
    bottom: 30px;
    left: 20%;
    opacity: 0.4;
    animation-delay: 1s;
  }

  @keyframes float-object {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
      opacity: 0.3;
    }
    50% {
      transform: translateY(-30px) rotate(180deg);
      opacity: 0.7;
    }
  }

  /* ========== ERROR CONTENT TEXT ========== */
  .error-content-text {
    width: 100%;
    text-align: center;
  }

  @media (min-width: 1024px) {
    .error-content-text {
      width: 55%;
      text-align: left;
    }
  }

  .error-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .error-title {
      font-size: 2.75rem;
      margin-bottom: var(--spacing-lg);
    }
  }

  @media (min-width: 1024px) {
    .error-title {
      font-size: 3.25rem;
    }
  }

  .error-subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .error-subtitle {
      font-size: 1.125rem;
      margin-bottom: var(--spacing-xl);
    }
  }

  .error-message-box {
    background-color: var(--color-primary-light);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
  }

  @media (min-width: 768px) {
    .error-message-box {
      padding: var(--spacing-lg);
      gap: var(--spacing-lg);
    }
  }

  .error-icon {
    font-size: var(--icon-md);
    color: var(--color-primary);
    flex-shrink: 0;
  }

  .error-message {
    font-size: 0.95rem;
    color: var(--color-text-primary);
    line-height: 1.6;
    text-align: left;
  }

  @media (min-width: 768px) {
    .error-message {
      font-size: 1rem;
    }
  }

  .error-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
  }

  @media (min-width: 1024px) {
    .error-actions {
      align-items: flex-start;
    }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
  }

  @media (min-width: 768px) {
    .btn {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

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

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

  .btn-primary:active {
    transform: translateY(0);
  }

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

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

  .btn-secondary:active {
    transform: translateY(0);
  }

  /* ========== ERROR SUGGESTIONS SECTION ========== */
  .error-suggestions-section {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-suggestions-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-suggestions-section {
      padding: 6rem 0;
    }
  }

  .error-suggestions-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
  }

  .suggestions-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .suggestions-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .suggestions-title {
      font-size: 2.5rem;
    }
  }

  .suggestions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

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

  .suggestion-card {
    background-color: var(--color-bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .suggestion-card {
      padding: var(--spacing-xl);
      gap: var(--spacing-lg);
    }
  }

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

  .suggestion-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--icon-lg);
    color: var(--color-primary);
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .suggestion-icon {
      width: 70px;
      height: 70px;
      font-size: var(--icon-xl);
      border-radius: var(--radius-xl);
    }
  }

  .suggestion-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .suggestion-card h3 {
      font-size: 1.25rem;
    }
  }

  .suggestion-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .suggestion-card p {
      font-size: 0.95rem;
    }
  }

  /* ========== ERROR CTA ========== */
  .error-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
  }

  @media (min-width: 768px) {
    .error-cta {
      padding: var(--spacing-2xl);
      border-radius: var(--radius-xl);
      gap: var(--spacing-xl);
    }
  }

  .cta-text {
    font-size: 1rem;
    color: var(--color-bg-white);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .cta-text {
      font-size: 1.125rem;
      max-width: 500px;
    }
  }

  .error-cta .btn-secondary {
    color: var(--color-bg-white);
    border-color: var(--color-bg-white);
  }

  .error-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-bg-white);
  }

  /* ========== RESPONSIVE ADJUSTMENTS ========== */
  @media (max-width: 767px) {
    .error-illustration {
      margin-bottom: var(--spacing-lg);
    }

    .illustration-404 {
      font-size: 3.5rem;
    }

    .character-head {
      width: 40px;
      height: 40px;
    }

    .character-body {
      width: 30px;
      height: 45px;
      top: 50px;
    }

    .character-arm {
      width: 25px;
      height: 10px;
      top: 55px;
    }

    .arm-left {
      left: -25px;
    }

    .arm-right {
      right: -25px;
    }

    .character-leg {
      width: 10px;
      height: 30px;
      top: 95px;
    }

    .leg-left {
      left: 15px;
    }

    .leg-right {
      right: 15px;
    }
  }

  /* Accessibility improvements */
  .btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  .suggestion-card:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* Print styles */
  @media print {
    .error-illustration {
      display: none;
    }

    .floating-objects {
      display: none;
    }
  }