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

:root {
  /* Color Scheme - Modern Financial */
  --color-primary: #2c5282;       /* Deep blue - trust, stability */
  --color-primary-light: #4a69bd; /* Lighter blue for hover states */
  --color-secondary: #38a169;     /* Green - growth, prosperity */
  --color-accent: #e53e3e;        /* Red - important alerts, warnings */
  --color-neutral: #718096;       /* Neutral gray for secondary text */
  --color-background: #f7fafc;    /* Light background */
  --color-surface: #ffffff;       /* Card/component background */
  --color-text-dark: #1a202c;     /* Primary text color */
  --color-text-light: #f7fafc;    /* Text on dark backgrounds */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  
  /* Spacing */
  --space-1: 0.25rem;    /* 4px */
  --space-2: 0.5rem;     /* 8px */
  --space-3: 0.75rem;    /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-5: 1.5rem;     /* 24px */
  --space-6: 2rem;       /* 32px */
  --space-8: 3rem;       /* 48px */
  --space-10: 4rem;      /* 64px */
  --space-12: 5rem;      /* 80px */
  --space-16: 7.5rem;    /* 120px */
  
  /* Borders */
  --border-radius-sm: 0.25rem;   /* 4px */
  --border-radius-md: 0.5rem;    /* 8px */
  --border-radius-lg: 1rem;      /* 16px */
  --border-radius-xl: 1.5rem;    /* 24px */
  --border-radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.07), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Icon Sizes */
  --icon-xs: 0.75rem;    /* 12px */
  --icon-sm: 1rem;       /* 16px */
  --icon-md: 1.5rem;     /* 24px */
  --icon-lg: 2rem;       /* 32px */
  --icon-xl: 3rem;       /* 48px */
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  color: var(--color-text-dark);
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}

small {
  font-size: var(--text-sm);
}

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

a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  line-height: 1.4;
}

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

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

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background-color: #2f855a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
}

.btn-sm {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
}

.btn-lg {
  font-size: var(--text-lg);
  padding: var(--space-4) var(--space-8);
}

.btn i {
  margin-right: var(--space-2);
}

/* Card Styles */
.card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

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

.icon-xs {
  font-size: var(--icon-xs);
}

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

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

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

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

.icon-text {
  display: inline-flex;
  align-items: center;
}

.icon-text i {
  margin-right: var(--space-2);
}

/* Section Spacing */
.section {
  padding: var(--space-16) 0;
}

/* Utilities */
.text-primary {
  color: var(--color-primary);
}

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

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

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

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

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

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

.bg-surface {
  background-color: var(--color-surface);
}

/* Responsive Typography */
@media (max-width: 767px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
  
  .section {
    padding: var(--space-8) 0;
  }
}

/* Responsive Spacing */
@media (min-width: 768px) and (max-width: 1023px) {
  .section {
    padding: var(--space-12) 0;
  }
}
.header {
  background-color: var(--color-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-4) 0;
  position: relative;
  z-index: 100;
}

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

.header__logo-wrapper {
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-text-dark);
  text-decoration: none;
  transition: transform var(--transition-normal);
}

.header__logo:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-size: var(--text-xl);
  border-radius: var(--border-radius-md);
  margin-right: var(--space-2);
  transition: background-color var(--transition-normal);
}

.header__logo:hover .header__logo-icon {
  background-color: var(--color-primary-light);
}

.header__logo-text {
  font-weight: 700;
}

.header__logo-accent {
  color: var(--color-secondary);
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  margin: 0 var(--space-3);
}

.header__nav-link {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: none;
  padding: var(--space-2);
  position: relative;
  transition: color var(--transition-normal);
}

.header__nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta {
  display: flex;
  align-items: center;
}

.header__cta-btn {
  white-space: nowrap;
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  border-radius: var(--border-radius-pill);
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.header__mobile-toggle-bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-normal);
}

.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-surface);
  padding: var(--space-6);
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
}

.header__mobile-menu.active {
  transform: translateX(0);
}

.header__mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.header__logo--mobile {
  font-size: var(--text-xl);
}

.header__mobile-close {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.header__mobile-close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: var(--color-primary);
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__mobile-close-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  transform: rotate(90deg);
}

.header__mobile-nav {
  margin-bottom: var(--space-8);
}

.header__mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__mobile-nav-item {
  margin-bottom: var(--space-4);
}

.header__mobile-nav-link {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: none;
  display: block;
  padding: var(--space-2) 0;
  transition: color var(--transition-normal);
}

.header__mobile-nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.header__mobile-footer {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
}

.header__mobile-cta {
  margin-bottom: var(--space-6);
  text-align: center;
}

.header__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header__mobile-link {
  font-size: var(--text-xs);
  color: var(--color-neutral);
  margin-bottom: var(--space-2);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.header__mobile-link:hover {
  color: var(--color-primary);
}

@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
  
  .header__cta {
    display: none;
  }
  
  .header__mobile-toggle {
    display: flex;
  }
  
  .header__mobile-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .header {
    padding: var(--space-3) 0;
  }
  
  .header__logo {
    font-size: var(--text-xl);
  }
  
  .header__logo-icon {
    width: 32px;
    height: 32px;
    font-size: var(--text-lg);
  }
}

/* Main Styles */
.main {
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: var(--space-10) 0 var(--space-16);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  line-height: 1.1;
  position: relative;
}

.hero-subtitle {
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
  color: var(--color-neutral);
  max-width: 90%;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--color-surface);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius-pill);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  color: var(--color-primary);
}

.hero-feature i {
  color: var(--color-secondary);
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
  transition: transform var(--transition-normal);
}

.hero-image-container:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.05);
  transition: transform var(--transition-normal);
}

.hero-image-container:hover .hero-image {
  transform: scale(1);
}

.hero-stats {
  display: flex;
  gap: var(--space-4);
}

.stat-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(0);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.stat-number {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-2);
}

.stat-text {
  font-size: var(--text-sm);
  color: var(--color-neutral);
}

.hero-shape {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 80%;
  background-color: var(--color-primary);
  opacity: 0.05;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  animation: morphShape 15s ease-in-out infinite alternate;
}

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Section Styles */
.section {
  padding: var(--space-16) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-10);
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-pill);
}

.section-description {
  font-size: var(--text-lg);
  color: var(--color-neutral);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-10);
}

/* Featured Posts Section */
.featured-posts {
  background-color: var(--color-background);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.card-image-container {
  height: 220px;
  overflow: hidden;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.post-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  flex: 1;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.card-description {
  font-size: var(--text-base);
  color: var(--color-neutral);
  margin-bottom: var(--space-4);
  flex: 1;
}

/* Process Section */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 4px;
  background-color: var(--color-primary-light);
  border-radius: var(--border-radius-pill);
}

.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: var(--space-10);
}

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

.timeline-number {
  position: absolute;
  left: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.timeline-content {
  margin-left: 120px;
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(44, 82, 130, 0.1);
  border-radius: 50%;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.timeline-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

.timeline-description {
  margin-bottom: var(--space-4);
  color: var(--color-neutral);
}

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

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.benefit-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: rgba(56, 161, 105, 0.1);
  border-radius: 50%;
  margin-bottom: var(--space-4);
  color: var(--color-secondary);
}

.benefit-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.benefit-description {
  color: var(--color-neutral);
  margin-bottom: var(--space-4);
  flex: 1;
}

.benefit-stats {
  background-color: rgba(44, 82, 130, 0.05);
  border-radius: var(--border-radius-md);
  padding: var(--space-3) var(--space-5);
  width: 100%;
}

.benefit-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-neutral);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.about-description {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  color: var(--color-neutral);
}

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

.value-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background-color: rgba(44, 82, 130, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
}

.value-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.value-description {
  color: var(--color-neutral);
}

.about-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-experience {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
}

.experience-number {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1;
}

.experience-text {
  font-size: var(--text-sm);
}

/* Testimonials Section */
.testimonials-section {
  color: var(--color-text-light);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(5px);
  transition: transform var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  margin-bottom: var(--space-4);
}

.testimonial-quote {
  font-size: var(--text-3xl);
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-3);
  display: block;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-4);
  color: var(--color-text-light);
}

.testimonial-rating {
  color: #FFD700;
  font-size: var(--text-sm);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-text-light);
}

.testimonial-name {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0;
}

.testimonial-position {
  font-size: var(--text-sm);
  opacity: 0.8;
  margin-bottom: 0;
}

/* FAQ Section */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(44, 82, 130, 0.05);
}

.faq-question h3 {
  font-size: var(--text-lg);
  margin-bottom: 0;
  flex: 1;
}

.faq-icon {
  color: var(--color-primary);
  font-size: var(--text-lg);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-5) var(--space-5) calc(var(--space-5) + 24px);
  display: none;
}

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

.faq-answer p {
  color: var(--color-neutral);
  margin-bottom: 0;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.contact-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.contact-description {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  color: var(--color-neutral);
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.contact-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.contact-benefit i {
  color: var(--color-secondary);
}

.contact-image {
  margin-top: var(--space-6);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form-container {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-weight: 500;
  color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-md);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(74, 105, 189, 0.2);
  outline: none;
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: var(--space-3);
}

.form-checkbox input {
  width: 18px;
  height: 18px;
}

.form-submit {
  margin-top: var(--space-2);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-surface);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-4);
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-grid {
    gap: var(--space-6);
  }
  
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .posts-grid,
  .benefits-grid,
  .testimonials-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    order: 0;
  }
  
  .posts-grid,
  .benefits-grid,
  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-content {
    margin-left: 100px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .section {
    padding: var(--space-8) 0;
  }
  
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .hero-cta {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .posts-grid,
  .benefits-grid,
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: var(--text-xl);
  }
  
  .timeline-content {
    margin-left: 80px;
    padding: var(--space-4);
  }
  
  .section-title {
    font-size: var(--text-2xl);
  }
  
  .section-description {
    font-size: var(--text-base);
  }
}

@media (max-width: 480px) {
  .hero-features {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-direction: column;
  }
  
  .timeline-content {
    margin-left: 70px;
  }
  
  .about-experience {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--space-4);
  }
}

.footer {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-8) 0 var(--space-4);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background: radial-gradient(circle at top right, var(--color-primary-light), transparent 70%);
  opacity: 0.4;
  z-index: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

.footer__info {
  grid-column: 1 / 2;
}

.footer__title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text-light);
}

.footer__tagline {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  opacity: 0.9;
}

.footer__finance-graphic {
  display: flex;
  align-items: flex-end;
  height: 80px;
  margin-top: var(--space-4);
  gap: var(--space-2);
}

.footer__chart-bar {
  width: 20px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
  transition: height var(--transition-normal);
}

.footer__chart-bar--1 {
  height: 40%;
}

.footer__chart-bar--2 {
  height: 65%;
}

.footer__chart-bar--3 {
  height: 50%;
}

.footer__chart-bar--4 {
  height: 80%;
}

.footer:hover .footer__chart-bar--1 {
  height: 65%;
}

.footer:hover .footer__chart-bar--2 {
  height: 80%;
}

.footer:hover .footer__chart-bar--3 {
  height: 90%;
}

.footer:hover .footer__chart-bar--4 {
  height: 100%;
}

.footer__nav,
.footer__resources,
.footer__legal {
  display: flex;
  flex-direction: column;
}

.footer__nav-title,
.footer__resources-title,
.footer__legal-title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text-light);
}

.footer__nav-list,
.footer__resources-list,
.footer__legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-item,
.footer__resources-item,
.footer__legal-item {
  margin-bottom: var(--space-2);
}

.footer__nav-link,
.footer__resources-link,
.footer__legal-link {
  color: var(--color-text-light);
  opacity: 0.85;
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  padding-left: var(--space-3);
}

.footer__nav-link:before,
.footer__resources-link:before,
.footer__legal-link:before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.footer__nav-link:hover,
.footer__resources-link:hover,
.footer__legal-link:hover {
  opacity: 1;
  color: var(--color-text-light);
  text-decoration: none;
  padding-left: var(--space-4);
}

.footer__nav-link:hover:before,
.footer__resources-link:hover:before,
.footer__legal-link:hover:before {
  transform: translateY(-50%) rotate(90deg);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.footer__currency-ticker {
  width: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: var(--space-2) 0;
  margin-bottom: var(--space-4);
}

.footer__ticker-wrapper {
  display: flex;
  animation: ticker 20s linear infinite;
}

.footer__ticker-item {
  display: flex;
  align-items: center;
  margin-right: var(--space-6);
  padding: 0 var(--space-2);
  white-space: nowrap;
}

.footer__ticker-label {
  font-weight: 600;
  margin-right: var(--space-2);
  font-size: var(--text-sm);
}

.footer__ticker-value {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-sm);
}

.footer__copyright {
  text-align: center;
  font-size: var(--text-sm);
  opacity: 0.7;
}

.footer__year {
  font-weight: 600;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__info {
    grid-column: 1 / -1;
  }
  
  .footer__finance-graphic {
    margin: var(--space-4) auto 0;
  }
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .footer__nav,
  .footer__resources,
  .footer__legal {
    margin-bottom: var(--space-4);
  }
  
  .footer__nav-title,
  .footer__resources-title,
  .footer__legal-title {
    margin-bottom: var(--space-2);
    position: relative;
    cursor: pointer;
    padding-right: var(--space-6);
  }
  
  .footer__nav-title::after,
  .footer__resources-title::after,
  .footer__legal-title::after {
    content: "+";
    position: absolute;
    right: var(--space-2);
    top: 0;
    font-size: var(--text-xl);
    transition: transform var(--transition-fast);
  }
  
  .footer__nav-title.active::after,
  .footer__resources-title.active::after,
  .footer__legal-title.active::after {
    transform: rotate(45deg);
  }
  
  .footer__nav-list,
  .footer__resources-list,
  .footer__legal-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
  }
  
  .footer__nav-list.active,
  .footer__resources-list.active,
  .footer__legal-list.active {
    max-height: 500px;
  }
}

.privacy-page {
  background-color: var(--color-background);
  font-family: var(--font-secondary);
  padding: var(--space-8) 0;
}

.privacy-page__header {
  margin-bottom: var(--space-8);
  text-align: center;
}

.privacy-page__header h1 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.privacy-page__last-updated {
  color: var(--color-neutral);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.privacy-page__content {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
}

.privacy-page__section {
  margin-bottom: var(--space-8);
}

.privacy-page__section h2 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-primary-light);
  padding-bottom: var(--space-2);
}

.privacy-page__section p {
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.privacy-page__list {
  list-style-type: disc;
  margin-left: var(--space-5);
  margin-bottom: var(--space-4);
}

.privacy-page__list li {
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.privacy-page__contact {
  background-color: var(--color-background);
  border-radius: var(--border-radius-md);
  padding: var(--space-4);
  margin-top: var(--space-4);
}

.privacy-page__contact p {
  margin-bottom: var(--space-2);
}

.privacy-page__contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-4) 0;
  }
  
  .privacy-page__content {
    padding: var(--space-4);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-6);
  }
  
  .privacy-page__header {
    margin-bottom: var(--space-6);
  }
}

/* Terms Page Styles */
.terms-page {
  padding: var(--space-6) 0;
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-8) auto;
}

.terms-page__header {
  border-bottom: 1px solid var(--color-neutral);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
}

.terms-page__title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.terms-page__updated {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-neutral);
  margin-bottom: var(--space-4);
}

.terms-page__content {
  font-family: var(--font-secondary);
  line-height: 1.7;
}

.terms-page__section {
  margin-bottom: var(--space-6);
}

.terms-page__section-title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.terms-page__list {
  margin-left: var(--space-5);
  margin-bottom: var(--space-4);
}

.terms-page__list li {
  margin-bottom: var(--space-2);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-4);
  }
  
  .terms-page__title {
    font-size: var(--text-2xl);
  }
  
  .terms-page__section-title {
    font-size: var(--text-lg);
  }
}

.cookie-page {
  font-family: var(--font-secondary);
  background-color: var(--color-background);
  padding: var(--space-8) 0;
  color: var(--color-text-dark);
}

.cookie-page__header {
  margin-bottom: var(--space-8);
  text-align: center;
}

.cookie-page__title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.cookie-page__updated {
  color: var(--color-neutral);
  font-size: var(--text-sm);
}

.cookie-page__content {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-8);
}

.cookie-page__section {
  margin-bottom: var(--space-8);
}

.cookie-page__section:last-child {
  margin-bottom: 0;
}

.cookie-page__section-title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-primary-light);
}

.cookie-page__subsection {
  margin-bottom: var(--space-4);
}

.cookie-page__subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-2);
}

.cookie-page p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.cookie-page__list {
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
}

.cookie-page__list li {
  margin-bottom: var(--space-2);
}

@media (max-width: 767px) {
  .cookie-page__content {
    padding: var(--space-4);
  }
  
  .cookie-page__title {
    font-size: var(--text-2xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-lg);
  }
  
  .cookie-page__subtitle {
    font-size: var(--text-base);
  }
}

.thank-page {
  padding: var(--space-8) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-page__container {
  width: 100%;
  max-width: 800px;
}

.thank-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8);
}

.thank-page__icon {
  color: var(--color-secondary);
  margin-bottom: var(--space-5);
  font-size: var(--icon-xl);
  height: var(--icon-xl);
  width: var(--icon-xl);
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  font-size: var(--text-3xl);
}

.thank-page__message {
  margin-bottom: var(--space-6);
}

.thank-page__message p {
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  line-height: 1.6;
}

.thank-page__note {
  color: var(--color-neutral);
  font-size: var(--text-base);
  font-style: italic;
}

.thank-page__actions {
  margin-top: var(--space-4);
}

.thank-page__button {
  font-size: var(--text-lg);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--border-radius-md);
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-6) 0;
  }
  
  .thank-page__content {
    padding: var(--space-5);
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
  
  .thank-page__message p {
    font-size: var(--text-base);
  }
  
  .thank-page__note {
    font-size: var(--text-sm);
  }
  
  .thank-page__button {
    font-size: var(--text-base);
    padding: var(--space-3) var(--space-5);
  }
}

  /* Category Page Styles */
  .category-page {
    font-family: var(--font-secondary);
  }

  /* Hero Section */
  .category-page__hero {
    padding: var(--space-10) 0;
    text-align: center;
  }

  .category-page__hero h1 {
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
    font-size: var(--text-4xl);
  }

  .category-page__hero-description {
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto var(--space-6);
    font-size: var(--text-lg);
  }

  .category-page__hero-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
  }

  /* Section Titles */
  .category-page__section-title {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
    color: var(--color-primary);
  }

  .category-page__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    margin: var(--space-3) auto 0;
    border-radius: var(--border-radius-pill);
  }

  /* Posts Grid */
  .category-page__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-6);
  }

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

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

  /* Post Card */
  .post-card {
    background-color: var(--color-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

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

  .post-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .post-card h3 {
    padding: var(--space-4) var(--space-4) var(--space-2);
    font-size: var(--text-xl);
    color: var(--color-primary);
  }

  .post-card p {
    padding: 0 var(--space-4);
    margin-bottom: var(--space-4);
    color: var(--color-text-dark);
    flex-grow: 1;
  }

  .post-card .btn {
    margin: 0 var(--space-4) var(--space-4);
    align-self: flex-start;
  }

  /* Tips Section */
  .category-page__tips {
    padding: var(--space-10) 0;
  }

  .category-page__tips-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
  }

  @media (min-width: 768px) {
    .category-page__tips-content {
      flex-direction: row;
      align-items: flex-start;
    }
  }

  .category-page__tips-text {
    flex: 1;
  }

  .category-page__tips-image {
    max-width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .category-page__tips-image {
      max-width: 45%;
    }
  }

  .category-page__tips-list {
    list-style: none;
    margin-top: var(--space-4);
  }

  .category-page__tips-list li {
    margin-bottom: var(--space-3);
    display: flex;
    align-items: flex-start;
  }

  .category-page__tips-list li .icon {
    margin-right: var(--space-2);
    flex-shrink: 0;
  }

  /* Stats Section */
  .category-page__stats {
    padding: var(--space-10) 0;
  }

  .category-page__stats-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
  }

  @media (min-width: 768px) {
    .category-page__stats-content {
      flex-direction: row;
      align-items: flex-start;
    }
  }

  .category-page__stats-text {
    flex: 1;
  }

  .category-page__stats-image {
    max-width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .category-page__stats-image {
      max-width: 45%;
    }
  }

  .category-page__stats-list {
    list-style: none;
    margin: var(--space-4) 0;
  }

  .category-page__stats-list li {
    margin-bottom: var(--space-3);
  }

  .category-page__stats-steps {
    margin-top: var(--space-4);
    padding-left: var(--space-6);
  }

  .category-page__stats-steps li {
    margin-bottom: var(--space-2);
  }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .category-page__hero h1 {
      font-size: var(--text-3xl);
    }

    .category-page__hero-description {
      font-size: var(--text-base);
    }

    .category-page__section-title {
      font-size: var(--text-2xl);
    }
  }

  /* Finance-specific background */
  .finance-background {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
  }

/* Base Styles for the Page */
.post-lichniy-byudzhet-v-kazahstane {
  font-family: var(--font-secondary);
  color: var(--color-text-dark);
  background-color: var(--color-background);
}

/* Breadcrumbs */
.breadcrumbs--sosta {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral);
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs--sosta a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs--sosta a:hover {
  color: var(--color-primary-light);
}

/* Hero Section */
.post-hero--sosta {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-12) 0;
  text-align: center;
}

.post-hero--sosta h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-text-light);
}

.post-hero--sosta .lead {
  font-size: var(--text-xl);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Sections Common Styles */
.content-section {
  padding: var(--space-16) 0;
}

.section-content {
  display: flex;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-8);
}

.text-content {
  flex: 1;
}

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

.section-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Content Section 1 */
.content-section--sosta-1 {
  background-color: var(--color-surface);
}

.content-section--sosta-1 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.content-section--sosta-1 h3 {
  color: var(--color-text-dark);
  font-size: var(--text-xl);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

/* Content Section 2 */
.content-section--sosta-2 {
  background-color: var(--color-background);
}

.content-section--sosta-2 h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-8);
}

.expense-categories {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: var(--space-5);
}

.expense-categories li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.expense-categories li:last-child {
  border-bottom: none;
}

.expense-categories strong {
  color: var(--color-primary);
}

.budget-tools {
  margin-top: var(--space-10);
}

.budget-tools h3 {
  text-align: center;
  margin-bottom: var(--space-5);
  color: var(--color-text-dark);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.tool-card {
  background-color: var(--color-surface);
  padding: var(--space-5);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tool-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

/* Content Section 3 */
.content-section--sosta-3 {
  background-color: var(--color-surface);
}

.content-section--sosta-3 h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-8);
}

.budget-formula {
  background-color: rgba(44, 82, 130, 0.05);
  border-radius: var(--border-radius-lg);
  padding: var(--space-5);
  list-style-type: none;
  margin: var(--space-5) 0;
}

.budget-formula li {
  margin-bottom: var(--space-3);
  padding-left: var(--space-4);
  position: relative;
}

.budget-formula li:before {
  content: "•";
  color: var(--color-secondary);
  position: absolute;
  left: 0;
}

.budget-formula strong {
  color: var(--color-primary);
  font-size: var(--text-lg);
}

.tips-section {
  margin-top: var(--space-10);
}

.tips-section h3 {
  text-align: center;
  margin-bottom: var(--space-6);
  color: var(--color-text-dark);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.tip-card {
  background-color: var(--color-background);
  padding: var(--space-5);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
}

.tip-number {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-right: var(--space-3);
  line-height: 1;
}

.conclusion {
  margin-top: var(--space-10);
  background-color: rgba(44, 82, 130, 0.05);
  padding: var(--space-6);
  border-radius: var(--border-radius-lg);
}

.conclusion h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.cta-box {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-6);
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-top: var(--space-8);
}

.cta-box p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.cta-box .btn {
  margin-top: var(--space-3);
}

/* Related Posts Section */
.related-posts--sosta {
  background-color: var(--color-background);
  padding: var(--space-12) 0;
}

.related-posts--sosta h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--space-8);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.post-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-image {
  height: 200px;
  overflow: hidden;
}

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

.post-content {
  padding: var(--space-4);
}

.post-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.post-content h3 a {
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-content h3 a:hover {
  color: var(--color-primary);
}

.post-content p {
  color: var(--color-neutral);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.read-more {
  display: inline-block;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.read-more:hover {
  color: var(--color-primary-light);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .section-content {
    flex-direction: column;
  }
  
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-hero--sosta {
    padding: var(--space-8) 0;
  }
  
  .post-hero--sosta h1 {
    font-size: var(--text-3xl);
  }
  
  .post-hero--sosta .lead {
    font-size: var(--text-lg);
  }
  
  .content-section {
    padding: var(--space-8) 0;
  }
  
  .tools-grid,
  .tips-grid,
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .section-image {
    max-height: 300px;
  }
}

/* Page-specific styles */
.post-pensionnoe-planirovanie-v-kazahstane {
  background-color: var(--color-background);
}

/* Breadcrumbs */
.breadcrumbs--pensi {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.breadcrumbs--pensi a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumbs--pensi a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

/* Hero Section */
.post-hero--pensi {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-12) 0;
  text-align: center;
  position: relative;
}

.post-hero--pensi h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  color: var(--color-text-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-hero--pensi .lead {
  font-size: var(--text-xl);
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Content Section 1 */
.content-section--pensi-1 {
  background-color: var(--color-surface);
  padding: var(--space-16) 0;
  color: var(--color-text-dark);
}

.content-section--pensi-1 .section-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-6);
}

.content-section--pensi-1 .text-content {
  flex: 1;
}

.content-section--pensi-1 .image-container {
  flex: 1;
}

.content-section--pensi-1 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  font-size: var(--text-3xl);
}

.content-section--pensi-1 p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: 1.8;
}

.content-section--pensi-1 .features-list {
  list-style-type: none;
  margin: var(--space-5) 0;
  padding: 0;
}

.content-section--pensi-1 .features-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.content-section--pensi-1 .features-list li::before {
  content: "•";
  color: var(--color-secondary);
  font-size: var(--text-2xl);
  position: absolute;
  left: var(--space-2);
  top: -5px;
}

.content-section--pensi-1 .section-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Content Section 2 */
.content-section--pensi-2 {
  background-color: var(--color-background);
  padding: var(--space-16) 0;
  color: var(--color-text-dark);
}

.content-section--pensi-2 h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-8);
  font-size: var(--text-3xl);
}

.content-section--pensi-2 .strategies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.content-section--pensi-2 .strategy-card {
  background-color: var(--color-surface);
  padding: var(--space-5);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--pensi-2 .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.content-section--pensi-2 h3 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.content-section--pensi-2 .section-image-container {
  text-align: center;
  margin: var(--space-8) 0;
}

.content-section--pensi-2 .section-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.content-section--pensi-2 .additional-tips {
  background-color: var(--color-surface);
  padding: var(--space-5);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-8);
}

.content-section--pensi-2 .additional-tips h3 {
  margin-bottom: var(--space-4);
}

.content-section--pensi-2 .additional-tips ul {
  list-style-type: none;
  padding: 0;
}

.content-section--pensi-2 .additional-tips li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.content-section--pensi-2 .additional-tips li::before {
  content: "✓";
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
}

/* Content Section 3 */
.content-section--pensi-3 {
  background-color: var(--color-surface);
  padding: var(--space-16) 0;
  color: var(--color-text-dark);
}

.content-section--pensi-3 h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-8);
  font-size: var(--text-3xl);
}

.content-section--pensi-3 .life-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.content-section--pensi-3 .life-stage {
  background-color: var(--color-background);
  padding: var(--space-5);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--pensi-3 .life-stage:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.content-section--pensi-3 h3 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.content-section--pensi-3 ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: var(--space-4);
}

.content-section--pensi-3 li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.content-section--pensi-3 li::before {
  content: "→";
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
}

.content-section--pensi-3 .conclusion {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-6);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-8);
  text-align: center;
}

.content-section--pensi-3 .conclusion h3 {
  color: var(--color-text-light);
  margin-bottom: var(--space-4);
}

.content-section--pensi-3 .conclusion p {
  margin-bottom: var(--space-5);
  line-height: 1.8;
}

.content-section--pensi-3 .conclusion .btn {
  margin-top: var(--space-4);
}

/* Related Posts Section */
.related-posts--pensi {
  background-color: var(--color-background);
  padding: var(--space-16) 0;
}

.related-posts--pensi h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--space-8);
  font-size: var(--text-3xl);
}

.related-posts--pensi .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.related-posts--pensi .post-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-posts--pensi .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.related-posts--pensi .post-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-posts--pensi .post-card-content {
  padding: var(--space-4);
}

.related-posts--pensi .post-card-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.related-posts--pensi .post-card-content h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.related-posts--pensi .post-card-content h3 a:hover {
  color: var(--color-primary-light);
}

.related-posts--pensi .post-card-content p {
  color: var(--color-neutral);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.related-posts--pensi .read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.related-posts--pensi .read-more:hover {
  color: #2f855a;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .content-section--pensi-2 .strategies-grid,
  .content-section--pensi-3 .life-stages,
  .related-posts--pensi .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-hero--pensi h1 {
    font-size: var(--text-3xl);
  }
  
  .post-hero--pensi .lead {
    font-size: var(--text-lg);
  }
}

@media (max-width: 767px) {
  .content-section--pensi-1 .section-content {
    flex-direction: column;
  }
  
  .content-section--pensi-2 .strategies-grid,
  .content-section--pensi-3 .life-stages,
  .related-posts--pensi .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-hero--pensi {
    padding: var(--space-8) 0;
  }
  
  .content-section--pensi-1,
  .content-section--pensi-2,
  .content-section--pensi-3,
  .related-posts--pensi {
    padding: var(--space-8) 0;
  }
  
  .post-hero--pensi h1 {
    font-size: var(--text-2xl);
  }
  
  .post-hero--pensi .lead {
    font-size: var(--text-base);
  }
  
  .content-section--pensi-1 h2,
  .content-section--pensi-2 h2,
  .content-section--pensi-3 h2,
  .related-posts--pensi h2 {
    font-size: var(--text-2xl);
  }
}

/* Page-specific styles */
.post-upravlenie-kreditami-i-dolgami {
  color: var(--color-text-dark);
  background-color: var(--color-background);
}

/* Breadcrumbs Section */
.breadcrumbs--uprav {
  background-color: var(--color-surface);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs--uprav .container {
  font-size: var(--text-sm);
  color: var(--color-neutral);
}

.breadcrumbs--uprav a {
  color: var(--color-neutral);
  transition: color var(--transition-fast);
}

.breadcrumbs--uprav a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* Hero Section */
.post-hero--uprav {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}

.post-hero--uprav .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.post-hero--uprav h1 {
  font-size: var(--text-4xl);
  color: var(--color-text-light);
  margin-bottom: var(--space-5);
  line-height: 1.2;
}

.post-hero--uprav .lead {
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-6);
  line-height: 1.5;
  max-width: 800px;
}

.post-hero--uprav .hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-5);
}

/* Content Section 1 */
.content-section--uprav-1 {
  background-color: var(--color-surface);
  padding: var(--space-16) 0;
  color: var(--color-text-dark);
}

.content-section--uprav-1 h2 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  text-align: center;
}

.content-section--uprav-1 .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.content-section--uprav-1 .content-text {
  font-size: var(--text-base);
}

.content-section--uprav-1 .content-image img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.content-section--uprav-1 .content-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.content-section--uprav-1 .feature-list {
  margin: var(--space-4) 0;
  padding-left: var(--space-5);
}

.content-section--uprav-1 .feature-list li {
  margin-bottom: var(--space-2);
  position: relative;
}

.content-section--uprav-1 .feature-list li::before {
  content: "•";
  color: var(--color-secondary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Content Section 2 */
.content-section--uprav-2 {
  background-color: var(--color-background);
  padding: var(--space-16) 0;
  color: var(--color-text-dark);
}

.content-section--uprav-2 h2 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  text-align: center;
}

.content-section--uprav-2 .strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.content-section--uprav-2 .strategy-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--uprav-2 .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.content-section--uprav-2 .strategy-card h3 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: var(--space-2);
}

.content-section--uprav-2 .strategy-card p {
  margin-bottom: var(--space-3);
}

.content-section--uprav-2 .strategy-card ol,
.content-section--uprav-2 .strategy-card ul {
  padding-left: var(--space-5);
  margin-bottom: var(--space-3);
}

.content-section--uprav-2 .strategy-card li {
  margin-bottom: var(--space-2);
}

.content-section--uprav-2 .info-box {
  background-color: rgba(44, 82, 130, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-4) var(--space-5);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
}

.content-section--uprav-2 .info-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: var(--space-4);
}

.content-section--uprav-2 .info-box p {
  margin: 0;
  font-style: italic;
}

/* Content Section 3 */
.content-section--uprav-3 {
  background-color: var(--color-surface);
  padding: var(--space-16) 0;
  color: var(--color-text-dark);
}

.content-section--uprav-3 h2 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  text-align: center;
}

.content-section--uprav-3 .content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.content-section--uprav-3 .content-column h3 {
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.content-section--uprav-3 .content-column p {
  margin-bottom: var(--space-3);
}

.content-section--uprav-3 .content-column ul,
.content-section--uprav-3 .content-column ol {
  padding-left: var(--space-5);
  margin: var(--space-3) 0;
}

.content-section--uprav-3 .content-column li {
  margin-bottom: var(--space-2);
}

.content-section--uprav-3 .key-takeaways {
  background-color: rgba(56, 161, 105, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-5);
  margin: var(--space-6) 0;
}

.content-section--uprav-3 .key-takeaways h3 {
  color: var(--color-secondary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  text-align: center;
}

.content-section--uprav-3 .key-takeaways ul {
  columns: 2;
  padding-left: var(--space-5);
}

.content-section--uprav-3 .key-takeaways li {
  margin-bottom: var(--space-3);
  break-inside: avoid;
}

.content-section--uprav-3 .conclusion-image {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-6);
}

/* Related Posts Section */
.related-posts--uprav {
  background-color: var(--color-background);
  padding: var(--space-16) 0;
  color: var(--color-text-dark);
}

.related-posts--uprav h2 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  text-align: center;
}

.related-posts--uprav .post-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.related-posts--uprav .post-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-posts--uprav .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-posts--uprav .post-card-image {
  height: 200px;
  overflow: hidden;
}

.related-posts--uprav .post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.related-posts--uprav .post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.related-posts--uprav .post-card-content {
  padding: var(--space-4);
}

.related-posts--uprav .post-card-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.related-posts--uprav .post-card-content h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.related-posts--uprav .post-card-content h3 a:hover {
  color: var(--color-primary-light);
}

.related-posts--uprav .post-card-content p {
  color: var(--color-neutral);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.related-posts--uprav .read-more {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.related-posts--uprav .read-more:hover {
  color: #2f855a;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .content-section--uprav-1 .content-grid,
  .content-section--uprav-2 .strategy-cards,
  .content-section--uprav-3 .content-columns,
  .related-posts--uprav .post-cards {
    grid-template-columns: 1fr 1fr;
  }
  
  .content-section--uprav-3 .key-takeaways ul {
    columns: 1;
  }
}

@media (max-width: 767px) {
  .post-hero--uprav {
    padding: var(--space-8) 0;
  }
  
  .post-hero--uprav h1 {
    font-size: var(--text-3xl);
  }
  
  .post-hero--uprav .lead {
    font-size: var(--text-lg);
  }
  
  .content-section--uprav-1,
  .content-section--uprav-2,
  .content-section--uprav-3,
  .related-posts--uprav {
    padding: var(--space-8) 0;
  }
  
  .content-section--uprav-1 .content-grid,
  .content-section--uprav-2 .strategy-cards,
  .content-section--uprav-3 .content-columns,
  .related-posts--uprav .post-cards {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .content-section--uprav-1 h2,
  .content-section--uprav-2 h2,
  .content-section--uprav-3 h2,
  .related-posts--uprav h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
  }
  
  .content-section--uprav-2 .info-box {
    flex-direction: column;
    text-align: center;
  }
  
  .content-section--uprav-2 .info-icon {
    margin-right: 0;
    margin-bottom: var(--space-3);
  }
}

/* Base Page Styles */
.post-page {
  font-family: var(--font-secondary);
  color: var(--color-text-dark);
  background-color: var(--color-background);
}

/* Breadcrumbs Styles */
.breadcrumbs--inves {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral);
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs--inves a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs--inves a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

/* Hero Section Styles */
.post-hero--inves {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.post-hero--inves h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  color: var(--color-text-light);
  line-height: 1.2;
  max-width: 80%;
}

.post-hero--inves .lead {
  font-size: var(--text-xl);
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 80%;
}

/* Content Section 1 Styles */
.content-section--inves-1 {
  padding: var(--space-16) 0;
  background-color: var(--color-surface);
  color: var(--color-text-dark);
}

.content-section--inves-1 h2 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  font-weight: 700;
}

.content-section--inves-1 .section-content {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.content-section--inves-1 .text-content {
  flex: 1;
}

.content-section--inves-1 .image-container {
  flex: 1;
}

.content-section--inves-1 .section-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Content Section 2 Styles */
.content-section--inves-2 {
  padding: var(--space-16) 0;
  background-color: var(--color-background);
  color: var(--color-text-dark);
}

.content-section--inves-2 h2 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  text-align: center;
  font-weight: 700;
}

.investment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.second-row {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66%;
  margin: 0 auto var(--space-6);
}

.investment-card {
  padding: var(--space-5);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.investment-card h3 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.investment-card p {
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
}

.investment-card p:last-child {
  margin-bottom: 0;
}

.section-image-container {
  text-align: center;
  margin-top: var(--space-8);
}

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

/* Content Section 3 Styles */
.content-section--inves-3 {
  padding: var(--space-16) 0;
  background-color: var(--color-surface);
  color: var(--color-text-dark);
}

.content-section--inves-3 h2 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  font-weight: 700;
}

.strategy-content {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.strategy-content .text-content {
  flex: 3;
}

.strategy-content .image-container {
  flex: 2;
  display: flex;
  align-items: center;
}

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

.strategy-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
}

.strategy-list li {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
  position: relative;
}

.strategy-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--space-2);
  width: var(--space-4);
  height: var(--space-4);
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.strategy-list h4 {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.conclusion {
  background-color: rgba(44, 82, 130, 0.05);
  padding: var(--space-6);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--color-primary);
}

.conclusion h3 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.action-steps {
  padding-left: var(--space-6);
  margin: 0;
}

.action-steps li {
  margin-bottom: var(--space-3);
}

.action-steps li:last-child {
  margin-bottom: 0;
}

/* Related Posts Styles */
.related-posts--inves {
  padding: var(--space-16) 0;
  background-color: var(--color-background);
  color: var(--color-text-dark);
}

.related-posts--inves h2 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  text-align: center;
  font-weight: 700;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.post-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.post-card:hover .post-image {
  transform: scale(1.05);
}

.post-content {
  padding: var(--space-5);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.post-content h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-content h3 a:hover {
  color: var(--color-primary-light);
}

.post-content p {
  color: var(--color-neutral);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.post-content .btn {
  align-self: flex-start;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .investment-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .second-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .content-section--inves-1 .section-content {
    flex-direction: column;
  }
  
  .strategy-content {
    flex-direction: column;
  }
  
  .post-hero--inves h1,
  .post-hero--inves .lead {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .post-hero--inves {
    padding: var(--space-8) 0;
  }
  
  .content-section--inves-1,
  .content-section--inves-2,
  .content-section--inves-3,
  .related-posts--inves {
    padding: var(--space-8) 0;
  }
  
  .investment-cards,
  .second-row,
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-hero--inves h1 {
    font-size: var(--text-3xl);
  }
  
  .post-hero--inves .lead {
    font-size: var(--text-lg);
  }
  
  .content-section--inves-1 h2,
  .content-section--inves-2 h2,
  .content-section--inves-3 h2,
  .related-posts--inves h2 {
    font-size: var(--text-2xl);
  }
}

/* Base Page Styles */
.post-semejnyj-finansovyj-plan-v-kazahstane {
  font-family: var(--font-secondary);
  color: var(--color-text-dark);
  background-color: var(--color-background);
}

/* Breadcrumbs Styles */
.breadcrumbs--semej {
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--color-neutral);
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs--semej a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs--semej a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

/* Hero Section Styles */
.post-hero--semej {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.post-hero--semej .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.post-hero--semej h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-text-light);
  max-width: 900px;
  text-align: center;
}

.post-hero--semej .lead {
  font-size: var(--text-xl);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  max-width: 800px;
  color: var(--color-text-light);
}

.post-hero--semej .hero-image {
  max-width: 100%;
  max-height: 400px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  margin-top: var(--space-4);
}

/* Content Section Styles - Section 1 */
.content-section--semej-1 {
  background-color: var(--color-surface);
  padding: var(--space-16) 0;
}

.content-section--semej-1 .content-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.content-section--semej-1 .content-text {
  flex: 1;
}

.content-section--semej-1 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  font-size: var(--text-3xl);
}

.content-section--semej-1 h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
  color: var(--color-text-dark);
}

.content-section--semej-1 p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: 1.8;
}

.content-section--semej-1 .feature-list {
  list-style-type: none;
  padding: 0;
  margin: var(--space-4) 0;
}

.content-section--semej-1 .feature-list li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
}

.content-section--semej-1 .feature-list li:last-child {
  border-bottom: none;
}

.content-section--semej-1 .feature-list li::before {
  content: "•";
  color: var(--color-secondary);
  font-weight: bold;
  display: inline-block;
  width: var(--space-4);
  margin-right: var(--space-2);
}

.content-section--semej-1 .section-image {
  max-width: 45%;
  max-height: 350px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.content-section--semej-1 .section-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Content Section Styles - Section 2 */
.content-section--semej-2 {
  background-color: var(--color-background);
  padding: var(--space-16) 0;
}

.content-section--semej-2 .content-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.content-section--semej-2 .content-text {
  flex: 1;
}

.content-section--semej-2 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  font-size: var(--text-3xl);
}

.content-section--semej-2 p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: 1.8;
}

.content-section--semej-2 .section-image {
  max-width: 45%;
  max-height: 350px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.content-section--semej-2 .section-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.content-section--semej-2 .options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.content-section--semej-2 .option-card {
  background-color: var(--color-surface);
  padding: var(--space-4);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.content-section--semej-2 .option-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.content-section--semej-2 .option-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
}

.content-section--semej-2 .option-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Content Section Styles - Section 3 */
.content-section--semej-3 {
  background-color: var(--color-surface);
  padding: var(--space-16) 0;
}

.content-section--semej-3 .content-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.content-section--semej-3 .content-text {
  flex: 1;
}

.content-section--semej-3 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  font-size: var(--text-3xl);
}

.content-section--semej-3 h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
  color: var(--color-text-dark);
}

.content-section--semej-3 h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.content-section--semej-3 p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: 1.8;
}

.content-section--semej-3 .insurance-list {
  list-style-type: none;
  padding: 0;
  margin: var(--space-4) 0;
}

.content-section--semej-3 .insurance-list li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.content-section--semej-3 .insurance-list li:last-child {
  border-bottom: none;
}

.content-section--semej-3 .insurance-list li::before {
  content: "✓";
  color: var(--color-secondary);
  font-weight: bold;
  display: inline-block;
  width: var(--space-4);
  margin-right: var(--space-2);
}

.content-section--semej-3 .tip-box {
  background-color: rgba(44, 82, 130, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-4);
  border-radius: var(--border-radius-md);
  margin: var(--space-6) 0;
}

.content-section--semej-3 .tip-box ol {
  padding-left: var(--space-6);
  margin: var(--space-3) 0 0;
}

.content-section--semej-3 .tip-box li {
  margin-bottom: var(--space-2);
}

.content-section--semej-3 .section-image {
  max-width: 45%;
  max-height: 350px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.content-section--semej-3 .section-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Content Section Styles - Section 4 */
.content-section--semej-4 {
  background-color: var(--color-background);
  padding: var(--space-16) 0;
}

.content-section--semej-4 h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  font-size: var(--text-3xl);
  text-align: center;
}

.content-section--semej-4 .steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.content-section--semej-4 .step-card {
  background-color: var(--color-surface);
  padding: var(--space-5);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content-section--semej-4 .step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.content-section--semej-4 .step-number {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.content-section--semej-4 .step-card h4 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.content-section--semej-4 .step-card p {
  font-size: var(--text-base);
  color: var(--color-neutral);
  margin: 0;
}

.content-section--semej-4 .conclusion {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background-color: rgba(56, 161, 105, 0.05);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.content-section--semej-4 .conclusion p {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: 1.8;
}

.content-section--semej-4 .conclusion p:last-child {
  margin-bottom: 0;
}

/* Related Posts Section */
.related-posts--semej {
  background-color: var(--color-surface);
  padding: var(--space-16) 0;
}

.related-posts--semej h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--space-8);
  font-size: var(--text-3xl);
}

.related-posts--semej .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.related-posts--semej .post-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-posts--semej .post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.related-posts--semej .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-posts--semej .post-card h3 {
  padding: var(--space-4) var(--space-4) var(--space-2);
  font-size: var(--text-lg);
}

.related-posts--semej .post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.related-posts--semej .post-card h3 a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.related-posts--semej .post-card p {
  padding: 0 var(--space-4);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-neutral);
  flex-grow: 1;
}

.related-posts--semej .post-card .btn {
  margin: 0 var(--space-4) var(--space-4);
  align-self: flex-start;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .content-section--semej-1 .content-wrapper,
  .content-section--semej-2 .content-wrapper,
  .content-section--semej-3 .content-wrapper {
    flex-direction: column;
  }
  
  .content-section--semej-1 .section-image,
  .content-section--semej-2 .section-image,
  .content-section--semej-3 .section-image {
    max-width: 100%;
    margin-bottom: var(--space-6);
    order: -1;
  }
  
  .content-section--semej-2 .options-grid {
    grid-template-columns: 1fr;
  }
  
  .content-section--semej-4 .steps-container {
    grid-template-columns: 1fr;
  }
  
  .related-posts--semej .posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .content-section--semej-4 .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .related-posts--semej .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-hero--semej {
    padding: var(--space-6) 0;
  }
  
  .post-hero--semej h1 {
    font-size: var(--text-2xl);
  }
  
  .post-hero--semej .lead {
    font-size: var(--text-base);
  }
  
  .content-section--semej-1,
  .content-section--semej-2,
  .content-section--semej-3,
  .content-section--semej-4,
  .related-posts--semej {
    padding: var(--space-8) 0;
  }
  
  .content-section--semej-1 h2,
  .content-section--semej-2 h2,
  .content-section--semej-3 h2,
  .content-section--semej-4 h2,
  .related-posts--semej h2 {
    font-size: var(--text-2xl);
  }
  
  .content-section--semej-1 h3,
  .content-section--semej-3 h3 {
    font-size: var(--text-lg);
  }
}

.privacy-page {
  font-family: var(--font-secondary);
  background-color: var(--color-background);
  color: var(--color-text-dark);
  padding: var(--space-8) 0;
}

.privacy-page__header {
  margin-bottom: var(--space-8);
  text-align: center;
}

.privacy-page__title {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.privacy-page__updated {
  font-size: var(--text-sm);
  color: var(--color-neutral);
  margin-bottom: 0;
}

.privacy-page__content {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
}

.privacy-page__section {
  margin-bottom: var(--space-8);
}

.privacy-page__section:last-child {
  margin-bottom: 0;
}

.privacy-page__section-title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-primary-light);
}

.privacy-page__list {
  list-style-type: disc;
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.privacy-page__list li {
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.privacy-page__contact-info {
  background-color: var(--color-background);
  padding: var(--space-4);
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--color-primary);
}

.privacy-page__contact-info p {
  margin-bottom: var(--space-2);
}

.privacy-page__contact-info p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-4) 0;
  }
  
  .privacy-page__title {
    font-size: var(--text-3xl);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-xl);
  }
  
  .privacy-page__content {
    padding: var(--space-4);
  }
  
  .privacy-page__list {
    margin-left: var(--space-4);
  }
}

.terms-page {
  background-color: var(--color-background);
  padding: var(--space-8) 0;
  font-family: var(--font-secondary);
}

.terms-page__container {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-md);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  max-width: 900px;
}

.terms-page__title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  text-align: center;
}

.terms-page__last-updated {
  text-align: right;
  margin-bottom: var(--space-6);
  color: var(--color-neutral);
  font-size: var(--text-sm);
  font-style: italic;
}

.terms-page__section {
  margin-bottom: var(--space-8);
}

.terms-page__section-title {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.terms-page p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
  color: var(--color-text-dark);
}

.terms-page__list {
  list-style-type: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.terms-page__list li {
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .terms-page__container {
    padding: var(--space-5);
  }
  
  .terms-page__title {
    font-size: var(--text-3xl);
  }
  
  .terms-page__section-title {
    font-size: var(--text-lg);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-6);
  }
}

.cookie-page {
  font-family: var(--font-secondary);
  background-color: var(--color-background);
  padding: var(--space-6) 0;
}

.cookie-page__header {
  margin-bottom: var(--space-8);
}

.cookie-page__header h1 {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.cookie-page__date {
  font-size: var(--text-sm);
  color: var(--color-neutral);
  margin-bottom: var(--space-5);
}

.cookie-page__content {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.cookie-page__section {
  margin-bottom: var(--space-8);
}

.cookie-page__section:last-child {
  margin-bottom: 0;
}

.cookie-page__section h2 {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(44, 82, 130, 0.2);
}

.cookie-page__subsection {
  margin-bottom: var(--space-5);
}

.cookie-page__subsection h3 {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
}

.cookie-page__list {
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
}

.cookie-page__list li {
  margin-bottom: var(--space-2);
}

.cookie-page p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: var(--space-4);
}

.cookie-page p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .cookie-page__header h1 {
    font-size: var(--text-2xl);
  }
  
  .cookie-page__section h2 {
    font-size: var(--text-lg);
  }
  
  .cookie-page__subsection h3 {
    font-size: var(--text-base);
  }
  
  .cookie-page__content {
    padding: var(--space-4);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-6);
  }
}

.thank-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) 0;
}

.thank-page__container {
  width: 100%;
  max-width: 800px;
}

.thank-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8);
}

.thank-page__icon {
  margin-bottom: var(--space-6);
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  font-family: var(--font-primary);
  font-weight: 700;
}

.thank-page__message {
  margin-bottom: var(--space-6);
}

.thank-page__message p {
  color: var(--color-text-dark);
  font-size: var(--text-lg);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.thank-page__info {
  background-color: rgba(44, 82, 130, 0.1);
  padding: var(--space-4);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-6);
  width: 100%;
}

.thank-page__response-time {
  color: var(--color-primary);
  font-size: var(--text-base);
  margin-bottom: 0;
}

.thank-page__actions {
  margin-top: var(--space-4);
}

.thank-page__button {
  font-size: var(--text-lg);
  padding: var(--space-3) var(--space-6);
}

@media (max-width: 767px) {
  .thank-page__content {
    padding: var(--space-5);
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
  
  .thank-page__message p {
    font-size: var(--text-base);
  }
  
  .thank-page__button {
    font-size: var(--text-base);
    padding: var(--space-3) var(--space-5);
  }
}

  .error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: var(--space-16) var(--space-4);
    background-color: var(--color-background);
  }

  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .error-404__code {
    font-family: var(--font-primary);
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    text-shadow: var(--shadow-md);
    position: relative;
  }

  .error-404__title {
    font-family: var(--font-primary);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-4);
  }

  .error-404__message {
    font-family: var(--font-secondary);
    font-size: var(--text-lg);
    color: var(--color-neutral);
    margin-bottom: var(--space-8);
    max-width: 90%;
  }

  .error-404__action {
    margin-bottom: var(--space-8);
  }

  .error-404__button {
    transition: all var(--transition-normal);
    padding: var(--space-3) var(--space-8);
  }
  
  .error-404__button:hover {
    transform: translateY(-3px);
  }

  .error-404__icon {
    margin-top: var(--space-4);
    opacity: 0.7;
    animation: pulse 3s infinite ease-in-out;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  @media (max-width: 767px) {
    .error-404 {
      padding: var(--space-8) var(--space-4);
    }
    
    .error-404__code {
      font-size: 7rem;
    }
    
    .error-404__title {
      font-size: var(--text-2xl);
    }
    
    .error-404__message {
      font-size: var(--text-base);
    }
  }
