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

:root {
  /* Color Scheme - Modern Neomorphic with Kazakh-inspired accents */
  --color-primary: #1976D2; /* Deep blue - represents stability in finances */
  --color-secondary: #4CAF50; /* Green - symbolizes growth and prosperity */
  --color-accent: #FFC107; /* Gold - represents wealth and Kazakhstan's flag */
  --color-background: #F5F7FA; /* Light gray-blue - clean, professional */
  --color-surface: #FFFFFF; /* White surface elements */
  --color-text-primary: #263238; /* Dark blue-gray for main text */
  --color-text-secondary: #546E7A; /* Medium blue-gray for secondary text */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  
  /* Font sizes - using rem for accessibility */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-md: 1.125rem;  /* 18px */
  --text-lg: 1.25rem;   /* 20px */
  --text-xl: 1.5rem;    /* 24px */
  --text-2xl: 1.75rem;  /* 28px */
  --text-3xl: 2rem;     /* 32px */
  --text-4xl: 2.5rem;   /* 40px */
  --text-5xl: 3rem;     /* 48px */
  
  /* Spacing */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 4rem;    /* 64px */
  --space-4xl: 6rem;    /* 96px */
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 9999px;
  
  /* Shadows - Neomorphic style */
  --shadow-sm: 4px 4px 8px rgba(174, 174, 192, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.9);
  --shadow-md: 6px 6px 12px rgba(174, 174, 192, 0.2), -6px -6px 12px rgba(255, 255, 255, 0.9);
  --shadow-lg: 10px 10px 20px rgba(174, 174, 192, 0.2), -10px -10px 20px rgba(255, 255, 255, 0.9);
  --shadow-inset: inset 4px 4px 8px rgba(174, 174, 192, 0.2), inset -4px -4px 8px rgba(255, 255, 255, 0.9);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Icon Sizes */
  --icon-xs: 1rem;    /* 16px */
  --icon-sm: 1.25rem; /* 20px */
  --icon-md: 1.5rem;  /* 24px */
  --icon-lg: 2rem;    /* 32px */
  --icon-xl: 3rem;    /* 48px */
}

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

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

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

/* 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-md);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-xl);
}

h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

h5 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

p {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

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

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

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

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

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

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

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

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

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

/* Form elements */
input, textarea, select {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  width: 100%;
  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  display: block;
}

/* 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 {
  margin-right: var(--space-sm);
}

/* Responsive breakpoints */
@media (max-width: 767px) {
  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-md);
  }
  
  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: var(--text-4xl);
  }
  
  h2 {
    font-size: var(--text-3xl);
  }
}

@media (min-width: 1024px) {
  body {
    font-size: var(--text-md);
  }
}
/* Header styles */
.header {
  position: relative;
  background-color: var(--color-background);
  padding: var(--space-md) 0;
  overflow: hidden;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

/* Logo styles */
.header__logo-wrapper {
  display: flex;
  flex-direction: column;
}

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

.header__logo:hover {
  transform: translateY(-2px);
  color: var(--color-primary);
}

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-surface);
  border-radius: var(--radius-md);
  margin-right: var(--space-sm);
  box-shadow: var(--shadow-sm);
  font-size: var(--text-xl);
  font-weight: 700;
}

.header__logo-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
}

.header__tagline {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-top: calc(var(--space-xs) * -1);
  margin-left: calc(var(--space-md) + var(--space-xs));
}

/* Navigation styles */
.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-md);
}

.header__nav-link {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

.header__nav-link--contact {
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.header__nav-link--contact:hover {
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header__nav-link--contact::after {
  display: none;
}

/* Mobile toggle button */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  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(--radius-pill);
  transition: all var(--transition-fast);
}

/* Mobile menu */
.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.header__mobile-menu.active {
  display: block;
  opacity: 1;
}

.header__mobile-menu-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 100%;
  padding: var(--space-lg);
}

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

.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: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--radius-pill);
  transform: translate(-50%, -50%) rotate(45deg);
}

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

.header__mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
}

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

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

.header__mobile-nav-link {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  display: block;
  transition: color var(--transition-fast);
}

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

.header__mobile-nav-link--contact {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  margin-top: var(--space-sm);
}

.header__mobile-nav-link--contact:hover {
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.header__mobile-menu-link {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-decoration: none;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

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

/* Accent shapes */
.header__accent-shape {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background-color: var(--color-accent);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
}

.header__accent-circle {
  position: absolute;
  bottom: -50px;
  left: 15%;
  width: 100px;
  height: 100px;
  background-color: var(--color-primary);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

/* Responsive styles */
@media (max-width: 1023px) {
  .header__nav-item {
    margin: 0 var(--space-sm);
  }
  
  .header__accent-shape {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
  }
  
  .header__accent-circle {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
  
  .header__mobile-toggle {
    display: flex;
  }
  
  .header__tagline {
    display: none;
  }
  
  .header__logo-icon {
    width: 36px;
    height: 36px;
    font-size: var(--text-lg);
  }
  
  .header__logo {
    font-size: var(--text-xl);
  }
  
  .header__accent-shape {
    width: 80px;
    height: 80px;
    top: -10px;
    right: -10px;
  }
  
  .header__accent-circle {
    display: none;
  }
}

/* Hero Section */
.main .hero {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background-color: var(--color-background);
}

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

.main .hero-text-wrapper {
  padding: var(--space-xl);
  position: relative;
  z-index: 2;
  transform: translateZ(0);
}

.main .hero-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
  position: relative;
}

.main .hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.main .hero-description {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  color: var(--color-text-secondary);
  max-width: 540px;
}

.main .hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.main .hero-cta .btn {
  padding: var(--space-md) var(--space-xl);
  font-weight: 500;
  transition: all var(--transition-normal);
}

.main .hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.main .hero-cta .btn-outline:hover {
  transform: translateY(-3px);
}

.main .hero-visual {
  position: relative;
  z-index: 2;
}

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

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

.main .hero-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.main .hero-image-container:hover img {
  transform: scale(1.05);
}

.main .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 3;
}

.main .stat-item {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

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

.main .hero-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-color: var(--color-accent);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 1;
}

/* Featured Posts Section */
.main .featured-posts {
  padding: var(--space-4xl) 0;
  background-color: var(--color-surface);
  position: relative;
}

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

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

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

.main .section-description {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.main .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.main .post-card {
  background-color: var(--color-surface);
  border-radius: var(--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;
}

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

.main .post-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

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

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

.main .post-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

.main .post-card:hover .post-title {
  color: var(--color-primary);
}

.main .post-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.main .post-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

.main .section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.main .section-cta .btn {
  padding: var(--space-sm) var(--space-xl);
  font-size: var(--text-md);
}

/* Benefits Section */
.main .benefits {
  padding: var(--space-4xl) 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.main .benefits::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.03;
  border-radius: 50%;
  z-index: 0;
}

.main .benefits::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background-color: var(--color-accent);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.main .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.main .benefit-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.main .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

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

.main .benefit-card:hover::before {
  transform: scaleX(1);
}

.main .benefit-icon {
  font-size: var(--icon-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-normal);
}

.main .benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  color: var(--color-accent);
}

.main .benefit-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.main .benefit-description {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

/* How It Works Section */
.main .how-it-works {
  padding: var(--space-4xl) 0;
  background-color: var(--color-surface);
  position: relative;
}

.main .steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.main .steps-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  z-index: 0;
}

.main .step-card {
  display: grid;
  grid-template-columns: 100px 1fr 300px;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
}

.main .step-number {
  width: 100px;
  height: 100px;
  background-color: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  z-index: 2;
  position: relative;
  transition: all var(--transition-normal);
}

.main .step-card:hover .step-number {
  transform: scale(1.1);
  background-color: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-lg);
}

.main .step-content {
  padding: var(--space-lg);
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .step-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.main .step-description {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

.main .step-image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .step-card:hover .step-image {
  transform: scale(1.05) rotate(2deg);
  box-shadow: var(--shadow-lg);
}

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

.main .step-card:hover .step-image img {
  transform: scale(1.1);
}

/* Testimonials Section */
.main .testimonials {
  padding: var(--space-4xl) 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.main .testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-color: var(--color-primary);
  opacity: 0.03;
  border-radius: 50%;
}

.main .testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.main .testimonial-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.main .testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 100px;
  font-family: serif;
  color: var(--color-primary);
  opacity: 0.1;
  line-height: 1;
}

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

.main .testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-lg);
}

.main .testimonial-rating {
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  font-size: var(--text-md);
}

.main .testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0;
}

.main .testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: var(--space-md);
}

.main .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.main .author-name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.main .author-position {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Contact Section */
.main .contact {
  padding: var(--space-4xl) 0;
  background-color: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.main .contact::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background-color: var(--color-accent);
  opacity: 0.05;
  border-radius: 50%;
}

.main .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.main .contact-info {
  padding-right: var(--space-lg);
}

.main .contact-info .section-title,
.main .contact-info .section-description {
  text-align: left;
}

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

.main .contact-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.main .feature-icon {
  font-size: var(--icon-md);
  color: var(--color-primary);
  background-color: rgba(25, 118, 210, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.main .contact-feature:hover .feature-icon {
  background-color: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.main .feature-text h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.main .feature-text p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.main .contact-form-container {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

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

.main .form-group {
  margin-bottom: var(--space-md);
}

.main .form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

.main .form-group input:focus,
.main .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

.main .form-privacy {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.main .form-privacy input[type="checkbox"] {
  width: auto;
}

.main .privacy-label {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.main .btn-submit {
  width: 100%;
  padding: var(--space-md);
  font-size: var(--text-md);
  margin-top: var(--space-sm);
}

/* Cookie Banner */
.main .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-surface);
  padding: var(--space-lg);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.main .cookie-banner.show {
  transform: translateY(0);
}

.main .cookie-banner p {
  margin-bottom: 0;
  margin-right: var(--space-lg);
  font-size: var(--text-sm);
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .main .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .testimonials-slider {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .main .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .main .hero-text-wrapper {
    order: 1;
    padding: var(--space-md);
  }
  
  .main .hero-visual {
    order: 0;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .step-card {
    grid-template-columns: 80px 1fr;
  }
  
  .main .step-image {
    display: none;
  }
  
  .main .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .main .contact-info {
    padding-right: 0;
  }
  
  .main .cookie-banner {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .main .cookie-banner p {
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main .hero-title {
    font-size: var(--text-3xl);
  }
  
  .main .hero-description {
    font-size: var(--text-base);
  }
  
  .main .hero-cta {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .main .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .main .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .main .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .main .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .main .step-card {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .main .step-number {
    width: 80px;
    height: 80px;
    font-size: var(--text-2xl);
    margin: 0 auto;
  }
  
  .main .steps-container::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .main .section-title {
    font-size: var(--text-2xl);
  }
  
  .main .section-description {
    font-size: var(--text-base);
  }
  
  .main .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

.footer {
  position: relative;
  background-color: var(--color-background);
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
  font-family: var(--font-primary);
}

.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 2;
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
}

.footer__info {
  flex: 1;
  min-width: 280px;
  position: relative;
  padding-right: var(--space-lg);
}

.footer__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  position: relative;
}

.footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.footer__description {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 450px;
}

.footer__tenge-symbol {
  position: absolute;
  right: var(--space-xl);
  top: 0;
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-5deg);
  opacity: 0.7;
}

.footer__tenge-symbol::before {
  content: "₸";
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
}

.footer__decoration {
  position: relative;
  height: 60px;
}

.footer__nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  flex: 2;
  min-width: 280px;
}

.footer__nav, .footer__resources {
  flex: 1;
  min-width: 180px;
}

.footer__nav-title {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

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

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

.footer__nav-link {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer__nav-link::before {
  content: "•";
  color: var(--color-accent);
  margin-right: var(--space-xs);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer__nav-link:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.footer__nav-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(84, 110, 122, 0.1);
}

.footer__legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__legal-link {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

.footer__copyright-text {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin: 0;
}

.footer__decoration-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(76, 175, 80, 0.05) 40%, rgba(76, 175, 80, 0.05) 60%, transparent 60%, transparent 100%);
  z-index: 1;
  opacity: 0.5;
}

.footer__decoration-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(0deg, transparent 0%, transparent 40%, rgba(25, 118, 210, 0.05) 40%, rgba(25, 118, 210, 0.05) 60%, transparent 60%, transparent 100%);
}

.footer__decoration-pattern::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.1) 5%, transparent 5%, transparent 100%);
  background-size: 80px 80px;
}

/* Responsive styles */
@media (max-width: 767px) {
  .footer__main {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer__nav-wrapper {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer__legal {
    margin-bottom: var(--space-md);
  }
  
  .footer__legal-list {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .footer__tenge-symbol {
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__nav-wrapper {
    flex: 1;
    flex-direction: row;
  }
  
  .footer__info {
    flex: 1;
  }
}

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

.privacy-page__container {
  max-width: 900px;
}

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

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

.privacy-page__updated {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-style: italic;
}

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

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

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

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

.privacy-page__text {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.privacy-page__list {
  list-style-type: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.privacy-page__list-item {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

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

.privacy-page__contact-item {
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
}

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__title {
    font-size: var(--text-3xl);
  }
  
  .privacy-page__content {
    padding: var(--space-lg);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-lg);
  }
  
  .privacy-page__text,
  .privacy-page__list-item,
  .privacy-page__contact-item {
    font-size: var(--text-sm);
  }
}

.terms-page {
  background-color: var(--color-background);
  padding: var(--space-xl) 0;
}

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

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

.terms-page__last-updated {
  text-align: right;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.terms-page__last-updated p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

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

.terms-page__section-title {
  color: var(--color-text-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: var(--space-xs);
}

.terms-page__text {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.terms-page__list {
  list-style-type: disc;
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.terms-page__list-item {
  color: var(--color-text-secondary);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .terms-page__container {
    padding: var(--space-lg) var(--space-md);
  }
  
  .terms-page__title {
    font-size: var(--text-3xl);
  }
  
  .terms-page__section-title {
    font-size: var(--text-lg);
  }
  
  .terms-page__text, .terms-page__list-item {
    font-size: var(--text-sm);
  }
  
  .terms-page__list {
    margin-left: var(--space-lg);
  }
}

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

.cookie-page__container {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.cookie-page__section-title {
  color: var(--color-text-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-accent);
}

.cookie-page__subsection-title {
  color: var(--color-text-primary);
  font-size: var(--text-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.cookie-page__text {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.cookie-page__list {
  list-style-type: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.cookie-page__list-item {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.cookie-page__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid #E0E0E0;
}

.cookie-page__updated {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  text-align: right;
  font-style: italic;
}

@media (max-width: 767px) {
  .cookie-page__title {
    font-size: var(--text-3xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-xl);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--text-md);
  }
  
  .cookie-page__content {
    padding: var(--space-lg);
  }
}

.thank-page {
  padding: var(--space-3xl) 0;
  background-color: var(--color-background);
  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-2xl);
}

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

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

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

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

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

.thank-page__button {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-base);
  font-weight: 500;
}

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

/* Category Page Styles */
.category-page {
  background-color: var(--color-background);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

/* Hero Section */
.category-page__hero {
  background-color: var(--color-surface);
  padding: var(--space-3xl) 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: var(--space-2xl);
}

.category-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-4xl);
  position: relative;
}

.category-page__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.category-page__description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 800px;
  line-height: 1.6;
}

/* Section Titles */
.category-page__section-title {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-sm);
}

.category-page__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-pill);
}

/* Posts Grid */
.category-page__posts {
  padding: var(--space-2xl) 0;
}

.category-page__posts-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

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

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

.post-card__image-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.post-card:hover .post-card__image-container img {
  transform: scale(1.05);
}

.post-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.post-card:hover .post-card__title {
  color: var(--color-accent);
}

.post-card__description {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.post-card__btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Tips Section */
.category-page__tips {
  background-color: var(--color-surface);
  padding: var(--space-3xl) 0;
  margin: var(--space-3xl) 0;
  box-shadow: var(--shadow-sm);
}

.category-page__tips-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.category-page__tips-image {
  flex: 0 0 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.category-page__tips-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.category-page__tips-list {
  flex: 0 0 100%;
}

.category-page__tips-subtitle {
  font-size: var(--text-2xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
}

.category-page__numbered-list {
  list-style: none;
  counter-reset: item;
}

.category-page__list-item {
  counter-increment: item;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: 40px;
}

.category-page__list-item::before {
  content: counter(item);
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  font-weight: 700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}

.category-page__list-title {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

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

/* Financial Literacy Section */
.category-page__financial-literacy {
  padding: var(--space-3xl) 0;
}

.category-page__stats-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.category-page__stats-info {
  flex: 0 0 100%;
}

.category-page__stats-subtitle,
.category-page__resources-subtitle {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.category-page__stats-text {
  margin-bottom: var(--space-xl);
}

.category-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.category-page__stat-card {
  background-color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.category-page__stat-number {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.category-page__stat-description {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.category-page__resources-list {
  list-style: none;
}

.category-page__resources-item {
  display: flex;
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.category-page__resources-icon {
  flex: 0 0 24px;
  height: 24px;
  background-color: var(--color-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-md);
  margin-top: 3px;
}

.category-page__resources-content {
  flex: 1;
}

.category-page__resources-title {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

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

.category-page__stats-image {
  flex: 0 0 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.category-page__stats-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__tips-content,
  .category-page__stats-content {
    flex-direction: row;
  }
  
  .category-page__tips-image,
  .category-page__stats-image {
    flex: 0 0 40%;
  }
  
  .category-page__tips-list,
  .category-page__stats-info {
    flex: 0 0 55%;
  }
  
  .category-page__stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__hero {
    padding: var(--space-4xl) 0;
  }
  
  .category-page__title {
    font-size: var(--text-5xl);
  }
  
  .category-page__description {
    font-size: var(--text-xl);
  }
}

  /* Page-specific styles */
  .post-top-kursy-finansovaya-gramotnost-kazakhstan {
    background-color: var(--color-background);
  }
  
  /* Breadcrumbs */
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    background-color: var(--color-surface);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .breadcrumbs a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .breadcrumbs a:hover {
    color: var(--color-primary);
  }
  
  /* Hero Section */
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero {
    background-color: var(--color-primary);
    color: var(--color-surface);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero h1 {
    color: var(--color-surface);
    font-weight: 700;
    margin-bottom: var(--space-md);
    font-size: var(--text-4xl);
    line-height: 1.2;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero .lead {
    font-size: var(--text-lg);
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    line-height: 1.6;
  }
  
  /* Content Sections */
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section {
    padding: var(--space-4xl) 0;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .section-light {
    background-color: var(--color-surface);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .section-dark {
    background-color: rgba(25, 118, 210, 0.05);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    font-weight: 700;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    margin: var(--space-sm) auto 0;
    border-radius: var(--radius-pill);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .section-content {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .text-content {
    flex: 1;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .image-container {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .image-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .image-container.center {
    max-width: 500px;
    margin: var(--space-xl) auto 0;
  }
  
  /* Benefits List */
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .benefits-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .benefits-list li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: var(--text-lg);
  }
  
  /* Steps Container */
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .step-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    color: var(--color-text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    box-shadow: var(--shadow-sm);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .step-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    color: var(--color-primary);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .step-card p {
    margin-bottom: var(--space-md);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .step-card ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .step-card ul li {
    margin-bottom: var(--space-xs);
    color: var(--color-text-secondary);
  }
  
  /* Tips Box */
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .tips-box {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .tips-box h4 {
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    font-size: var(--text-md);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .tips-box ol {
    padding-left: var(--space-xl);
    margin-bottom: 0;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .tips-box ol li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
  }
  
  /* Related Posts Section */
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts-section {
    padding: var(--space-4xl) 0;
    background-color: var(--color-background);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts-section h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts-section h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    margin: var(--space-sm) auto 0;
    border-radius: var(--radius-pill);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-card p {
    flex-grow: 1;
    margin-bottom: var(--space-lg);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-card .btn {
    align-self: flex-start;
  }
  
  /* Responsive styles */
  @media (max-width: 1023px) {
    .post-top-kursy-finansovaya-gramotnost-kazakhstan .section-content {
      flex-direction: column;
    }
    
    .post-top-kursy-finansovaya-gramotnost-kazakhstan .steps-container {
      grid-template-columns: 1fr;
    }
    
    .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section {
      padding: var(--space-2xl) 0;
    }
    
    .post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero {
      padding: var(--space-2xl) 0;
    }
  }
  
  @media (max-width: 767px) {
    .post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero h1 {
      font-size: var(--text-3xl);
    }
    
    .post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero .lead {
      font-size: var(--text-base);
    }
    
    .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section h2 {
      font-size: var(--text-2xl);
    }
  }

/* Page-specific styles */
.post-top-kursy-finansovaya-gramotnost-kazakhstan {
  color: var(--color-text-primary);
}

/* Breadcrumbs */
.post-top-kursy-finansovaya-gramotnost-kazakhstan .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  background-color: var(--color-background);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3xl);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(25, 118, 210, 0.9) 0%, rgba(25, 118, 210, 0.7) 100%);
  z-index: 1;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero .container {
  position: relative;
  z-index: 2;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero h1 {
  color: var(--color-surface);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  max-width: 800px;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero .lead {
  color: var(--color-surface);
  font-size: var(--text-xl);
  font-weight: 400;
  max-width: 800px;
  margin-bottom: 0;
}

/* Content Sections */
.post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .section-light {
  background-color: var(--color-surface);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .section-accent {
  background-color: rgba(76, 175, 80, 0.1);
  position: relative;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section h2 {
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .content-grid.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .content-grid.reverse .content-text {
  direction: ltr;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .content-grid.reverse .content-image {
  direction: ltr;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .content-text {
  padding-right: var(--space-lg);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .content-image {
  position: relative;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .section-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Lists */
.post-top-kursy-finansovaya-gramotnost-kazakhstan .savings-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: var(--space-lg);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .savings-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: var(--space-sm);
  font-family: var(--font-secondary);
  color: var(--color-text-secondary);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .savings-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

/* Cards */
.post-top-kursy-finansovaya-gramotnost-kazakhstan .savings-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .savings-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .savings-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .savings-card h3 {
  font-size: var(--text-lg);
  margin-top: 0;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .savings-card p {
  font-size: var(--text-base);
  margin-bottom: 0;
}

/* Budget Tips */
.post-top-kursy-finansovaya-gramotnost-kazakhstan .budget-tips {
  background-color: rgba(255, 193, 7, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .budget-tips::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-accent);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .budget-tips h3 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .budget-tips ol {
  margin-bottom: 0;
  padding-left: 20px;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .budget-tips li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .budget-tips strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Conclusion */
.post-top-kursy-finansovaya-gramotnost-kazakhstan .conclusion {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .conclusion h3 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .conclusion .btn {
  margin-top: var(--space-lg);
}

/* Related Posts Section */
.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-4xl) 0;
  margin-top: var(--space-3xl);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts-section h2 {
  margin-bottom: var(--space-xl);
  text-align: center;
  position: relative;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

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

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-content h3 {
  font-size: var(--text-lg);
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-content p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-top: auto;
  display: inline-block;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-link:hover {
  color: var(--color-accent);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-link::after {
  content: " →";
  transition: transform var(--transition-fast);
  display: inline-block;
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .related-post-link:hover::after {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-grid,
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-text {
    padding-right: 0;
    order: 1;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-image {
    margin-bottom: var(--space-lg);
    order: 0;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .savings-cards {
    grid-template-columns: 1fr;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .savings-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section h2 {
    font-size: var(--text-2xl);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .content-section h3 {
    font-size: var(--text-lg);
  }
  
  .post-top-kursy-finansovaya-gramotnost-kazakhstan .budget-tips {
    padding: var(--space-lg);
  }
}

/* Base Styles for the Post Page */
.post-page {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

/* Breadcrumbs Navigation */
.post-page .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  background-color: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.post-page .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-page .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-page .post-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.post-page .post-hero h1 {
  color: var(--color-surface);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-page .post-hero .lead {
  color: var(--color-surface);
  font-size: var(--text-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Content Sections */
.post-page .content-section {
  padding: var(--space-3xl) 0;
}

.post-page .section-light {
  background-color: var(--color-surface);
}

.post-page .section-accent {
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.post-page .section-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-accent);
}

/* Content with Image Layout */
.post-page .content-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.post-page .content-text h3 {
  color: var(--color-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: var(--text-xl);
}

.post-page .content-text p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.post-page .feature-list {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.post-page .feature-list li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-md);
}

.post-page .feature-list li::before {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.post-page .content-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* App Cards Section */
.post-page .app-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

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

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

.post-page .app-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-xl);
}

.post-page .app-card p {
  margin-bottom: var(--space-md);
}

.post-page .app-features h4 {
  color: var(--color-text-primary);
  font-size: var(--text-md);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.post-page .app-features ul {
  padding-left: var(--space-lg);
}

.post-page .app-features li {
  margin-bottom: var(--space-xs);
  position: relative;
}

.post-page .image-container {
  margin-top: var(--space-2xl);
  text-align: center;
}

.post-page .image-container img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Criteria Grid */
.post-page .criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-page .criteria-item {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--color-primary);
}

.post-page .criteria-item h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
}

.post-page .criteria-item p {
  margin-bottom: 0;
}

/* Tips List */
.post-page .tips-list {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.post-page .tips-list li {
  margin-bottom: var(--space-md);
  position: relative;
}

.post-page .tips-list strong {
  color: var(--color-primary);
}

/* Conclusion Section */
.post-page .conclusion {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-accent);
}

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

/* Related Posts Section */
.post-page .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-3xl) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.post-page .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
}

.post-page .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.post-page .related-post-content {
  padding: var(--space-lg);
}

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

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

.post-page .related-post-content h3 a:hover {
  color: var(--color-accent);
}

.post-page .related-post-content p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.post-page .read-more {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-page .read-more:hover {
  color: var(--color-accent);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .post-page .post-hero h1 {
    font-size: var(--text-5xl);
  }
  
  .post-page .content-with-image {
    grid-template-columns: 3fr 2fr;
  }
  
  .post-page .app-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-page .app-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-page .criteria-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-page .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Page-specific styles */
.post-top-kursy-finansovaya-gramotnost-kazakhstan .post-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D47A1 100%);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .section-accent {
  background: linear-gradient(to bottom, #F5F7FA, #E4E7EC);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .app-card {
  border-top: 3px solid var(--color-secondary);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .criteria-item:nth-child(odd) {
  border-left-color: var(--color-primary);
}

.post-top-kursy-finansovaya-gramotnost-kazakhstan .criteria-item:nth-child(even) {
  border-left-color: var(--color-secondary);
}

/* Base Styles */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  background-color: var(--color-background);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3xl);
  box-shadow: var(--shadow-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-lg);
  font-size: var(--text-4xl);
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero .lead {
  color: var(--color-surface);
  font-size: var(--text-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* Content Sections */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .content-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .section-light {
  background-color: var(--color-surface);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .section-dark {
  background-color: var(--color-background);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .content-section h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  text-align: center;
  position: relative;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .content-section h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-accent);
  margin: var(--space-sm) auto var(--space-lg);
}

/* Course Grid Section */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-card h3 {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  position: relative;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-features {
  list-style-type: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-features li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-features li:before {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Two Column Layout */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .two-column-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  align-items: center;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-list {
  margin-top: var(--space-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-item {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-item:last-child {
  border-bottom: none;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-item h3 {
  color: var(--color-secondary);
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

/* Benefits Box */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .benefits-box {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .benefits-box h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .benefits-box ul {
  padding-left: var(--space-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .benefits-box li {
  margin-bottom: var(--space-sm);
}

/* Specialized Courses */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .specialized-courses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .specialized-course {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .specialized-course:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .specialized-course h3 {
  color: var(--color-primary);
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

/* Conclusion Box */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .conclusion-box {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
  border-left: 4px solid var(--color-accent);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .conclusion-box h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .conclusion-box ol {
  padding-left: var(--space-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .conclusion-box li {
  margin-bottom: var(--space-sm);
}

/* Images */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .finance-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) auto;
  box-shadow: var(--shadow-md);
}

/* Related Posts Section */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-3xl) 0;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card h3 a:hover {
  color: var(--color-accent);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .two-column-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .specialized-courses {
    grid-template-columns: 1fr;
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .course-grid {
    grid-template-columns: 1fr;
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Page specific styles */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero {
  background-color: var(--color-primary);
  padding: var(--space-3xl) 0;
  color: var(--color-surface);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero h1 {
  color: var(--color-surface);
  font-size: var(--text-4xl);
  max-width: 85%;
  margin-bottom: var(--space-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero .lead {
  color: var(--color-surface);
  font-size: var(--text-lg);
  max-width: 80%;
  font-weight: 500;
  margin-bottom: 0;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
  font-family: var(--font-secondary);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Content sections */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .content-section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .section-light {
  background-color: var(--color-surface);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .section-dark {
  background-color: var(--color-background);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .content-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .content-section h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .content-section h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .content-section h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .section-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .section-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .section-image-full {
  margin: var(--space-xl) 0;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .section-image-full img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Feature list */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .feature-list li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .feature-highlight {
  color: var(--color-primary);
  font-weight: 500;
}

/* Safety fund cards */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .safety-fund-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .safety-fund-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  height: 100%;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .safety-fund-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .safety-fund-card ul,
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .safety-fund-card ol {
  padding-left: var(--space-lg);
  margin-bottom: 0;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .safety-fund-card li {
  margin-bottom: var(--space-xs);
}

/* Investment strategies */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .investment-strategies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .strategy-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .strategy-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-accent);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .strategy-card ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .strategy-card li {
  margin-bottom: var(--space-xs);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .strategy-card p:last-child {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--color-secondary);
}

/* Steps list */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .steps-list li {
  position: relative;
  padding-left: var(--space-2xl);
  margin-bottom: var(--space-md);
  counter-increment: step-counter;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: var(--space-lg);
  height: var(--space-lg);
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--text-sm);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .steps-list li strong {
  color: var(--color-primary);
}

/* Section conclusion */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .section-conclusion {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Related posts section */
.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts {
  padding: var(--space-3xl) 0;
  background-color: var(--color-background);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-pill);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background-color: var(--color-surface);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card p {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}

.post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-post-card .btn {
  align-self: flex-start;
}

/* Responsive styles */
@media (max-width: 1023px) {
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .section-grid {
    grid-template-columns: 1fr;
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .investment-strategies {
    grid-template-columns: 1fr;
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .safety-fund-cards {
    grid-template-columns: 1fr;
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero h1 {
    max-width: 100%;
    font-size: var(--text-3xl);
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .post-hero .lead {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-luchshie-prilozheniya-uchet-finansov-kazakhstan .investment-strategies {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.privacy-page__container {
  max-width: 900px;
}

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

.privacy-page__title {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.privacy-page__last-updated {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-style: italic;
}

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

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

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

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

.privacy-page__text {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.privacy-page__list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.privacy-page__list-item {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

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

.privacy-page__contact-item {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
}

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

.privacy-page__contact-item strong {
  color: var(--color-text-primary);
  font-weight: 500;
}

@media (max-width: 767px) {
  .privacy-page__content {
    padding: var(--space-lg);
  }
  
  .privacy-page__section-title {
    font-size: var(--text-lg);
  }
  
  .privacy-page__text,
  .privacy-page__list-item,
  .privacy-page__contact-item {
    font-size: var(--text-sm);
  }
}

.terms-page {
  background-color: var(--color-background);
  padding: var(--space-xl) 0;
}

.terms-page__container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.terms-page__updated p {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-style: italic;
}

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

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

.terms-page__text {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.terms-page__list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.terms-page__list-item {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

@media (max-width: 767px) {
  .terms-page__container {
    padding: var(--space-md);
  }
  
  .terms-page__title {
    font-size: var(--text-3xl);
  }
  
  .terms-page__section-title {
    font-size: var(--text-lg);
  }
  
  .terms-page__text,
  .terms-page__list-item {
    font-size: var(--text-sm);
  }
}

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

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

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

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

.cookie-page__heading {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-accent);
}

.cookie-page__subheading {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.cookie-page__text {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

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

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

.cookie-page__list-item {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.cookie-page__footer {
  margin-top: var(--space-2xl);
  padding-top: var(--space-md);
  border-top: 1px solid #E0E0E0;
}

.cookie-page__updated {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-align: right;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .cookie-page__title {
    font-size: var(--text-2xl);
  }
  
  .cookie-page__heading {
    font-size: var(--text-lg);
  }
  
  .cookie-page__subheading {
    font-size: var(--text-md);
  }
  
  .cookie-page__wrapper {
    padding: var(--space-lg);
  }
}

.thank-page {
  padding: var(--space-3xl) 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-2xl);
}

.thank-page__icon {
  margin-bottom: var(--space-xl);
  width: var(--icon-xl);
  height: var(--icon-xl);
}

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

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

.thank-page__text {
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.thank-page__text--highlight {
  color: var(--color-primary);
  font-weight: 500;
}

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

.thank-page__button {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-md);
  font-weight: 500;
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--text-3xl);
  }
  
  .thank-page__text {
    font-size: var(--text-base);
  }
  
  .thank-page__button {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-base);
  }
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: var(--space-4xl) var(--space-md);
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.error-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  padding: var(--space-xl);
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.error-404__number {
  font-family: var(--font-primary);
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-lg);
  text-shadow: 3px 3px 0 var(--color-accent);
}

.error-404__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.error-404__message {
  font-size: var(--text-md);
  margin-bottom: var(--space-xl);
  color: var(--color-text-secondary);
}

.error-404__button {
  padding: var(--space-md) var(--space-xl);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.error-404__button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.error-404__decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.error-404__coin {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: var(--color-accent);
  border-radius: 50%;
  top: 20%;
  right: 15%;
  opacity: 0.5;
  box-shadow: var(--shadow-sm);
}

.error-404__coin--small {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 20%;
  background-color: var(--color-primary);
  opacity: 0.3;
}

@media (max-width: 767px) {
  .error-404__number {
    font-size: 6rem;
    margin-bottom: var(--space-md);
  }
  
  .error-404__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
  }
  
  .error-404__message {
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
  }
  
  .error-404__content {
    padding: var(--space-lg);
  }
  
  .error-404 {
    padding: var(--space-2xl) var(--space-sm);
  }
  
  .error-404__coin {
    width: 40px;
    height: 40px;
  }
  
  .error-404__coin--small {
    width: 25px;
    height: 25px;
  }
}
