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

:root {
  /* Primary Colors */
  --color-primary: #0066cc;
  --color-primary-dark: #0052a3;
  --color-primary-light: #e6f0ff;
  --color-accent: #00b8a9;
  --color-accent-light: #e0f8f5;
  
  /* Neutral Colors */
  --color-bg-dark: #0a0e27;
  --color-bg-light: #f8f9fb;
  --color-bg-white: #ffffff;
  --color-text-dark: #0a0e27;
  --color-text-gray: #4a5568;
  --color-text-light: #ffffff;
  --color-border: #e2e8f0;
  --color-border-dark: #2d3748;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Font Sizes */
  --fs-h1-mobile: 2.25rem;
  --fs-h1-tablet: 2.75rem;
  --fs-h1-desktop: 3.75rem;
  
  --fs-h2-mobile: 1.875rem;
  --fs-h2-tablet: 2.25rem;
  --fs-h2-desktop: 3rem;
  
  --fs-h3-mobile: 1.5rem;
  --fs-h3-tablet: 1.75rem;
  --fs-h3-desktop: 2.25rem;
  
  --fs-h4-mobile: 1.25rem;
  --fs-h4-tablet: 1.5rem;
  --fs-h4-desktop: 1.875rem;
  
  --fs-body-mobile: 0.875rem;
  --fs-body-tablet: 0.9375rem;
  --fs-body-desktop: 1rem;
  
  /* Spacing Scale */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2rem;
  --sp-xl: 3rem;
  --sp-2xl: 4rem;
  --sp-3xl: 6rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(10, 14, 39, 0.08);
  --shadow-md: 0 4px 12px rgba(10, 14, 39, 0.12);
  --shadow-lg: 0 8px 24px rgba(10, 14, 39, 0.16);
  --shadow-xl: 0 12px 36px rgba(10, 14, 39, 0.2);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  
  /* Icon Sizes */
  --icon-sm: 1.25rem;
  --icon-md: 2rem;
  --icon-lg: 3rem;
  --icon-xl: 4rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Z-Index */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-modal: 40;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body-mobile);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  body {
    font-size: var(--fs-body-tablet);
  }
}

@media (min-width: 1024px) {
  body {
    font-size: var(--fs-body-desktop);
  }
}

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

h1 {
  font-size: var(--fs-h1-mobile);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--fs-h1-tablet);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--fs-h1-desktop);
  }
}

h2 {
  font-size: var(--fs-h2-mobile);
}

@media (min-width: 768px) {
  h2 {
    font-size: var(--fs-h2-tablet);
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: var(--fs-h2-desktop);
  }
}

h3 {
  font-size: var(--fs-h3-mobile);
}

@media (min-width: 768px) {
  h3 {
    font-size: var(--fs-h3-tablet);
  }
}

@media (min-width: 1024px) {
  h3 {
    font-size: var(--fs-h3-desktop);
  }
}

h4 {
  font-size: var(--fs-h4-mobile);
}

@media (min-width: 768px) {
  h4 {
    font-size: var(--fs-h4-tablet);
  }
}

@media (min-width: 1024px) {
  h4 {
    font-size: var(--fs-h4-desktop);
  }
}

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

h6 {
  font-size: 1rem;
  font-weight: 600;
}

/* Links */
a {
  text-decoration: none;
  transition: all var(--transition-base);
}

/* Paragraphs */
p {
  margin-bottom: var(--sp-md);
}

p:last-child {
  margin-bottom: 0;
}

/* Lists */
ul, ol {
  margin-left: var(--sp-lg);
  margin-bottom: var(--sp-md);
}

li {
  margin-bottom: var(--sp-sm);
}

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

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

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

/* Buttons Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  gap: 0.5rem;
  white-space: nowrap;
}

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

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

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

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

.btn-primary:active {
  transform: translateY(0);
}

/* Button Secondary */
.btn-secondary {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:active {
  transform: translateY(0);
}

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

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

/* Button Outline Light */
.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--color-text-light);
  color: var(--color-text-light);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-text-light);
}

/* Button Small */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .btn-sm {
    padding: 0.75rem 1.5rem;
  }
}

/* Button Large */
.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.0625rem;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 1.5rem 3rem;
  }
}

/* Forms */
form {
  width: 100%;
}

.form-group {
  margin-bottom: var(--sp-lg);
}

.form-group:last-child {
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: var(--sp-sm);
  font-weight: 500;
  font-size: 0.9375rem;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="number"],
input[type="date"],
input[type="time"],
textarea,
select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.5;
  transition: all var(--transition-base);
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

input[type="checkbox"],
input[type="radio"] {
  margin-right: 0.5rem;
  cursor: pointer;
}

/* Form Submit Button */
.form-submit-btn {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.form-submit-btn:active {
  transform: translateY(0);
}

.form-submit-btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  transform: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Flexbox Systems */
.flex {
  display: flex;
  flex-direction: row;
}

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

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

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

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

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

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

/* Margin Utilities */
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mt-xl { margin-top: var(--sp-xl); }

.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
.mb-xl { margin-bottom: var(--sp-xl); }

/* Padding Utilities */
.p-sm { padding: var(--sp-sm); }
.p-md { padding: var(--sp-md); }
.p-lg { padding: var(--sp-lg); }
.p-xl { padding: var(--sp-xl); }

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

.font-light { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Display Utilities */
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

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

@media (max-width: 767px) {
  .hidden-tablet { display: none; }
}

@media (min-width: 1024px) {
  .hidden-desktop { display: none; }
}

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

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

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

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

.card-icon {
  font-size: var(--icon-lg);
  color: var(--color-primary);
  margin-bottom: var(--sp-sm);
}

.card h3 {
  color: var(--color-text-dark);
  margin-bottom: var(--sp-sm);
}

.card p {
  color: var(--color-text-gray);
  margin-bottom: 0;
}

/* Badge Component */
.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.badge-accent {
  background-color: var(--color-accent-light);
  color: #006b63;
}

.badge-success {
  background-color: #e6fffa;
  color: #008b82;
}

.badge-warning {
  background-color: #fff8e6;
  color: #cc8800;
}

/* Divider */
.divider {
  height: 1px;
  background-color: var(--color-border);
  margin: var(--sp-lg) 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-direction: row;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--color-text-gray);
  font-size: 0.875rem;
}

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

/* Print Styles */
@media print {
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a, a:visited {
    text-decoration: underline;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  img {
    max-width: 100% !important;
  }
  
  @page {
    margin: 0.5cm;
  }
  
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  
  h2, h3 {
    page-break-after: avoid;
  }
}

/* Loading State */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Placeholder */
.placeholder {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

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

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

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn var(--transition-slow) ease-in-out;
}

.animate-slideInUp {
  animation: slideInUp var(--transition-slow) ease-in-out;
}

.animate-slideInDown {
  animation: slideInDown var(--transition-slow) ease-in-out;
}

.animate-slideInLeft {
  animation: slideInLeft var(--transition-slow) ease-in-out;
}

.animate-slideInRight {
  animation: slideInRight var(--transition-slow) ease-in-out;
}

.animate-scaleIn {
  animation: scaleIn var(--transition-slow) ease-in-out;
}
/* ============================================
   TECH-NAV: Digital Technologies Header
   ============================================ */

/* Root variables are defined globally */
/* Color system, typography, spacing, and shadows use :root variables */

/* ============================================
   HEADER WRAPPER
   ============================================ */

.tech-nav {
  background-color: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-border-dark);
  position: relative;
  z-index: var(--z-sticky);
  box-shadow: var(--shadow-sm);
}

.tech-nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .tech-nav-container {
    padding: 1.25rem;
    gap: 1.5rem;
  }
}

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

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

.tech-nav-logo {
  flex-shrink: 0;
}

.tech-nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: color var(--transition-fast);
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.tech-nav-brand:hover {
  color: var(--color-accent);
}

.tech-nav-brand i {
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .tech-nav-brand {
    font-size: 1.5rem;
    gap: 0.75rem;
  }

  .tech-nav-brand i {
    font-size: 2rem;
  }
}

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

.tech-nav-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  flex-grow: 1;
  margin-left: 2rem;
}

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

.tech-nav-nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.tech-nav-nav-link:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

@media (min-width: 1440px) {
  .tech-nav-nav-link {
    font-size: 1rem;
  }
}

/* ============================================
   ACTIONS (CTA + MOBILE TOGGLE)
   ============================================ */

.tech-nav-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .tech-nav-actions {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .tech-nav-actions {
    gap: 1.5rem;
  }
}

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

.tech-nav-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  white-space: nowrap;
}

.tech-nav-cta-button:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tech-nav-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

@media (min-width: 768px) {
  .tech-nav-cta-button {
    display: block;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .tech-nav-cta-button {
    padding: 1rem 2.25rem;
    font-size: 1rem;
  }
}

/* ============================================
   MOBILE TOGGLE BUTTON
   ============================================ */

.tech-nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: var(--z-fixed);
}

.tech-nav-mobile-toggle:hover {
  opacity: 0.8;
}

.tech-nav-mobile-toggle:focus {
  outline: none;
}

@media (min-width: 1024px) {
  .tech-nav-mobile-toggle {
    display: none;
  }
}

.tech-nav-hamburger {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-text-light);
  border-radius: 1px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.tech-nav-hamburger::before,
.tech-nav-hamburger::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-text-light);
  border-radius: 1px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.tech-nav-hamburger::before {
  transform: translateY(-0.45rem);
}

.tech-nav-hamburger::after {
  transform: translateY(0.45rem);
}

/* Hamburger animation when menu is open */
.tech-nav-mobile-toggle[aria-expanded="true"] .tech-nav-hamburger {
  background-color: transparent;
}

.tech-nav-mobile-toggle[aria-expanded="true"] .tech-nav-hamburger::before {
  transform: rotate(45deg) translateY(0);
}

.tech-nav-mobile-toggle[aria-expanded="true"] .tech-nav-hamburger::after {
  transform: rotate(-45deg) translateY(0);
}

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

.tech-nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg-dark);
  display: flex;
  flex-direction: column;
  z-index: calc(var(--z-fixed) - 1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  padding-top: 4rem;
  overflow-y: auto;
}

.tech-nav-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .tech-nav-mobile-menu {
    display: none !important;
  }
}

/* ============================================
   MOBILE MENU HEADER
   ============================================ */

.tech-nav-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--color-border-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg-dark);
  z-index: var(--z-fixed);
}

.tech-nav-mobile-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.tech-nav-mobile-close {
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.tech-nav-mobile-close:hover {
  color: var(--color-accent);
}

.tech-nav-mobile-close:focus {
  outline: none;
  color: var(--color-accent);
}

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

.tech-nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  margin-top: 0.5rem;
  flex-grow: 1;
}

.tech-nav-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
  display: block;
}

.tech-nav-mobile-link:hover {
  background-color: rgba(0, 102, 204, 0.1);
  color: var(--color-accent);
  border-left-color: var(--color-accent);
  padding-left: 1.75rem;
}

.tech-nav-mobile-link:focus {
  outline: none;
  background-color: rgba(0, 102, 204, 0.15);
  color: var(--color-accent);
}

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

.tech-nav-mobile-cta {
  margin: 1rem;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-align: center;
  border: 2px solid var(--color-primary);
  display: block;
}

.tech-nav-mobile-cta:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tech-nav-mobile-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .tech-nav-brand,
  .tech-nav-nav-link,
  .tech-nav-cta-button,
  .tech-nav-mobile-menu,
  .tech-nav-hamburger,
  .tech-nav-hamburger::before,
  .tech-nav-hamburger::after,
  .tech-nav-mobile-link,
  .tech-nav-mobile-cta,
  .tech-nav-mobile-close {
    transition: none !important;
  }
}

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

@media (max-width: 319px) {
  .tech-nav-brand span {
    display: none;
  }

  .tech-nav-brand i {
    font-size: 1.5rem;
  }
}

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

    /* Smart Life Hub - Main Section Styles */
    .smart-life-hub .hero-section {
      background-color: #0a0e27;
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

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

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

    .smart-life-hub .hero-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: flex-start;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 1024px) {
      .smart-life-hub .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
      }
    }

    .smart-life-hub .hero-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      flex: 1;
    }

    .smart-life-hub .hero-section h1 {
      color: #ffffff;
      font-size: 2.25rem;
      line-height: 1.2;
      margin: 0;
    }

    @media (min-width: 768px) {
      .smart-life-hub .hero-section h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .hero-section h1 {
        font-size: 3.75rem;
      }
    }

    .smart-life-hub .hero-section .hero-subtitle {
      color: #e0e0e0;
      font-size: 0.875rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .smart-life-hub .hero-section .hero-subtitle {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .hero-section .hero-subtitle {
        font-size: 1rem;
      }
    }

    .smart-life-hub .hero-cta {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .hero-cta {
        flex-direction: row;
      }
    }

    .smart-life-hub .hero-image {
      flex: 1;
      max-width: 100%;
      height: auto;
    }

    .smart-life-hub .hero-image img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
    }

    /* Features Section */
    .smart-life-hub .features-section {
      background-color: #f8f9fb;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-life-hub .features-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .features-section {
        padding: 6rem 0;
      }
    }

    .smart-life-hub .features-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .features-content {
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .features-content {
        gap: 3rem;
      }
    }

    .smart-life-hub .features-header {
      text-align: center;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .features-header {
        margin-bottom: 2rem;
      }
    }

    .smart-life-hub .features-section h2 {
      color: #0a0e27;
      margin: 0 0 1rem 0;
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .features-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .features-section h2 {
        font-size: 3rem;
      }
    }

    .smart-life-hub .features-section .features-subtitle {
      color: #4a5568;
      font-size: 0.875rem;
      margin: 0;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (min-width: 768px) {
      .smart-life-hub .features-section .features-subtitle {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .features-section .features-subtitle {
        font-size: 1rem;
      }
    }

    .smart-life-hub .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .smart-life-hub .feature-card {
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
      background-color: #ffffff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      gap: 1rem;
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .smart-life-hub .feature-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

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

    .smart-life-hub .feature-card .feature-icon {
      font-size: 2.5rem;
      color: var(--color-primary);
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .feature-card .feature-icon {
        font-size: 3rem;
      }
    }

    .smart-life-hub .feature-card h3 {
      color: #0a0e27;
      margin: 0;
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .feature-card h3 {
        font-size: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .feature-card h3 {
        font-size: 1.875rem;
      }
    }

    .smart-life-hub .feature-card p {
      color: #4a5568;
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .smart-life-hub .feature-card p {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .feature-card p {
        font-size: 1rem;
      }
    }

    /* How It Works Section */
    .smart-life-hub .how-section {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-life-hub .how-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .how-section {
        padding: 6rem 0;
      }
    }

    .smart-life-hub .how-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .smart-life-hub .how-header {
      text-align: center;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .how-header {
        margin-bottom: 2rem;
      }
    }

    .smart-life-hub .how-section h2 {
      color: #0a0e27;
      margin: 0 0 1rem 0;
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .how-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .how-section h2 {
        font-size: 3rem;
      }
    }

    .smart-life-hub .how-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .how-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }
    }

    .smart-life-hub .step-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      text-align: center;
      position: relative;
    }

    @media (min-width: 768px) {
      .smart-life-hub .step-card {
        padding: 2rem 1.5rem;
      }
    }

    .smart-life-hub .step-number {
      width: 3rem;
      height: 3rem;
      background-color: var(--color-primary);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 0.5rem auto;
    }

    @media (min-width: 1024px) {
      .smart-life-hub .step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.75rem;
      }
    }

    .smart-life-hub .step-card h3 {
      color: #0a0e27;
      margin: 0;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .step-card h3 {
        font-size: 1.25rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .step-card h3 {
        font-size: 1.5rem;
      }
    }

    .smart-life-hub .step-card p {
      color: #4a5568;
      margin: 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .step-card p {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .step-card p {
        font-size: 1rem;
      }
    }

    /* Featured Posts Section */
    .smart-life-hub .featured-section {
      background-color: #f8f9fb;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-life-hub .featured-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .featured-section {
        padding: 6rem 0;
      }
    }

    .smart-life-hub .featured-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .featured-content {
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .featured-content {
        gap: 3rem;
      }
    }

    .smart-life-hub .featured-header {
      text-align: center;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .featured-header {
        margin-bottom: 2rem;
      }
    }

    .smart-life-hub .featured-section h2 {
      color: #0a0e27;
      margin: 0 0 1rem 0;
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .featured-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .featured-section h2 {
        font-size: 3rem;
      }
    }

    .smart-life-hub .featured-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .featured-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .smart-life-hub .post-card {
      display: flex;
      flex-direction: column;
      background-color: #ffffff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
      gap: 0;
    }

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

    .smart-life-hub .post-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .smart-life-hub .post-card-content {
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .post-card-content {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .smart-life-hub .post-card h3 {
      color: #0a0e27;
      margin: 0;
      font-size: 1.25rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .smart-life-hub .post-card h3 {
        font-size: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .post-card h3 {
        font-size: 1.75rem;
      }
    }

    .smart-life-hub .post-card p {
      color: #4a5568;
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .smart-life-hub .post-card p {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .post-card p {
        font-size: 1rem;
      }
    }

    .smart-life-hub .post-link {
      color: var(--color-primary);
      font-weight: 600;
      text-decoration: none;
      transition: all var(--transition-base);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .post-link {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .post-link {
        font-size: 1rem;
      }
    }

    .smart-life-hub .post-link:hover {
      color: var(--color-primary-dark);
      transform: translateX(4px);
    }

    .smart-life-hub .featured-footer {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .featured-footer {
        margin-top: 2rem;
      }
    }

    /* About Section */
    .smart-life-hub .about-section {
      background-color: #ffffff;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-life-hub .about-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .about-section {
        padding: 6rem 0;
      }
    }

    .smart-life-hub .about-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .smart-life-hub .about-content {
        flex-direction: row;
        gap: 3rem;
      }
    }

    .smart-life-hub .about-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .smart-life-hub .about-section h2 {
      color: #0a0e27;
      margin: 0;
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .about-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .about-section h2 {
        font-size: 3rem;
      }
    }

    .smart-life-hub .about-section p {
      color: #4a5568;
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .smart-life-hub .about-section p {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .about-section p {
        font-size: 1rem;
      }
    }

    .smart-life-hub .about-image {
      flex: 1;
      width: 100%;
      max-width: 400px;
    }

    .smart-life-hub .about-image img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    /* Benefits Section */
    .smart-life-hub .benefits-section {
      background-color: #0066cc;
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

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

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

    .smart-life-hub .benefits-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .benefits-content {
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .benefits-content {
        gap: 3rem;
      }
    }

    .smart-life-hub .benefits-header {
      text-align: center;
    }

    .smart-life-hub .benefits-section h2 {
      color: #ffffff;
      margin: 0 0 1rem 0;
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .benefits-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .benefits-section h2 {
        font-size: 3rem;
      }
    }

    .smart-life-hub .benefits-section .benefits-subtitle {
      color: #e0e0e0;
      margin: 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .benefits-section .benefits-subtitle {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .benefits-section .benefits-subtitle {
        font-size: 1rem;
      }
    }

    .smart-life-hub .benefits-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

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

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

    .smart-life-hub .benefit-item {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
    }

    .smart-life-hub .benefit-icon {
      color: #00b8a9;
      font-size: 1.5rem;
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

    .smart-life-hub .benefit-text h3 {
      color: #ffffff;
      margin: 0 0 0.5rem 0;
      font-size: 1.125rem;
      font-weight: 600;
    }

    @media (min-width: 768px) {
      .smart-life-hub .benefit-text h3 {
        font-size: 1.25rem;
      }
    }

    .smart-life-hub .benefit-text p {
      color: #e0e0e0;
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .smart-life-hub .benefit-text p {
        font-size: 0.9375rem;
      }
    }

    /* Statistics Section */
    .smart-life-hub .stats-section {
      background-color: #f8f9fb;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .smart-life-hub .stats-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .stats-section {
        padding: 6rem 0;
      }
    }

    .smart-life-hub .stats-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .stats-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .stats-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }
    }

    .smart-life-hub .stat-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .stat-card {
        padding: 2rem;
      }
    }

    .smart-life-hub .stat-number {
      color: var(--color-primary);
      font-size: 2.5rem;
      font-weight: 700;
      font-family: var(--font-display);
      margin: 0;
    }

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

    @media (min-width: 1024px) {
      .smart-life-hub .stat-number {
        font-size: 3.5rem;
      }
    }

    .smart-life-hub .stat-label {
      color: #0a0e27;
      font-weight: 600;
      margin: 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .stat-label {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .stat-label {
        font-size: 1rem;
      }
    }

    /* Contact Form Section */
    .smart-life-hub .contact-section {
      background-color: #0a0e27;
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

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

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

    .smart-life-hub .contact-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      max-width: 700px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .smart-life-hub .contact-content {
        gap: 2.5rem;
      }
    }

    .smart-life-hub .contact-header {
      text-align: center;
    }

    .smart-life-hub .contact-section h2 {
      color: #ffffff;
      margin: 0 0 1rem 0;
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .contact-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .contact-section h2 {
        font-size: 3rem;
      }
    }

    .smart-life-hub .contact-section .contact-subtitle {
      color: #e0e0e0;
      margin: 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .contact-section .contact-subtitle {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .contact-section .contact-subtitle {
        font-size: 1rem;
      }
    }

    .smart-life-hub .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .contact-form {
        gap: 2rem;
      }
    }

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

    .smart-life-hub .contact-form label {
      color: #ffffff;
      font-weight: 600;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .contact-form label {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .contact-form label {
        font-size: 1rem;
      }
    }

    .smart-life-hub .contact-form input,
    .smart-life-hub .contact-form textarea {
      background-color: rgba(255, 255, 255, 0.95);
      border: 1px solid #e2e8f0;
      color: #0a0e27;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-md);
      font-family: var(--font-primary);
      font-size: 0.875rem;
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .smart-life-hub .contact-form input,
      .smart-life-hub .contact-form textarea {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .contact-form input,
      .smart-life-hub .contact-form textarea {
        font-size: 1rem;
      }
    }

    .smart-life-hub .contact-form input:focus,
    .smart-life-hub .contact-form textarea:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
      background-color: #ffffff;
    }

    .smart-life-hub .contact-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .smart-life-hub .form-submit-btn {
      background-color: var(--color-accent);
      color: #000000;
      padding: 0.875rem 2rem;
      border: none;
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      font-weight: 600;
      font-family: var(--font-primary);
      cursor: pointer;
      transition: all var(--transition-base);
      box-shadow: var(--shadow-md);
      margin-top: 0.5rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .form-submit-btn {
        padding: 1rem 2.5rem;
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .form-submit-btn {
        font-size: 1rem;
      }
    }

    .smart-life-hub .form-submit-btn:hover {
      background-color: #009b92;
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px);
    }

    .smart-life-hub .form-submit-btn:active {
      transform: translateY(0);
    }

    .smart-life-hub .form-submit-btn:disabled {
      background-color: #cccccc;
      cursor: not-allowed;
      transform: none;
    }

    .smart-life-hub .contact-privacy {
      text-align: center;
      color: #e0e0e0;
      font-size: 0.75rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .contact-privacy {
        font-size: 0.8125rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .contact-privacy {
        font-size: 0.875rem;
      }
    }

    .smart-life-hub .contact-privacy a {
      color: var(--color-accent);
      text-decoration: none;
      transition: color var(--transition-base);
    }

    .smart-life-hub .contact-privacy a:hover {
      color: #ffffff;
      text-decoration: underline;
    }

    /* Cookie Banner */
    .smart-life-hub .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #1a1a2e;
      border-top: 2px solid var(--color-primary);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: space-between;
      z-index: var(--z-fixed);
      box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    }

    @media (min-width: 768px) {
      .smart-life-hub .cookie-banner {
        padding: 1.5rem 2rem;
        flex-direction: row;
        align-items: center;
      }
    }

    .smart-life-hub .cookie-content {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }

    @media (min-width: 768px) {
      .smart-life-hub .cookie-content {
        gap: 0;
      }
    }

    .smart-life-hub .cookie-banner h3 {
      color: #ffffff;
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 600;
    }

    @media (min-width: 768px) {
      .smart-life-hub .cookie-banner h3 {
        font-size: 1rem;
      }
    }

    .smart-life-hub .cookie-banner p {
      color: #e0e0e0;
      margin: 0;
      font-size: 0.8125rem;
      line-height: 1.5;
    }

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

    .smart-life-hub .cookie-actions {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .cookie-actions {
        flex-direction: row;
        gap: 1rem;
        flex-shrink: 0;
      }
    }

    .smart-life-hub .cookie-btn {
      padding: 0.625rem 1.25rem;
      border: none;
      border-radius: var(--radius-md);
      font-size: 0.8125rem;
      font-weight: 600;
      font-family: var(--font-primary);
      cursor: pointer;
      transition: all var(--transition-base);
      white-space: nowrap;
    }

    @media (min-width: 768px) {
      .smart-life-hub .cookie-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
      }
    }

    .smart-life-hub .cookie-accept {
      background-color: var(--color-primary);
      color: #ffffff;
    }

    .smart-life-hub .cookie-accept:hover {
      background-color: var(--color-primary-dark);
    }

    .smart-life-hub .cookie-decline {
      background-color: transparent;
      border: 1px solid #e0e0e0;
      color: #e0e0e0;
    }

    .smart-life-hub .cookie-decline:hover {
      border-color: #ffffff;
      color: #ffffff;
    }

    .smart-life-hub .cookie-banner.hidden {
      display: none;
    }

    /* Utility Classes */
    .smart-life-hub .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    @media (min-width: 768px) {
      .smart-life-hub .container {
        padding: 0 2rem;
      }
    }

    @media (min-width: 1024px) {
      .smart-life-hub .container {
        padding: 0 3rem;
      }
    }

    .smart-life-hub .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      font-family: var(--font-primary);
      border: none;
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: all var(--transition-base);
      text-align: center;
      gap: 0.5rem;
      white-space: nowrap;
      text-decoration: none;
    }

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

    @media (min-width: 1024px) {
      .smart-life-hub .btn {
        font-size: 1rem;
      }
    }

    .smart-life-hub .btn-primary {
      background-color: var(--color-primary);
      color: #ffffff;
      box-shadow: var(--shadow-md);
    }

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

    .smart-life-hub .btn-primary:active {
      transform: translateY(0);
    }

    .smart-life-hub .btn-secondary {
      background-color: var(--color-accent);
      color: #000000;
      box-shadow: var(--shadow-md);
    }

    .smart-life-hub .btn-secondary:hover {
      background-color: #009b92;
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px);
    }

    .smart-life-hub .btn-secondary:active {
      transform: translateY(0);
    }

    /* Footer Component Styles */
  .footer {
    background-color: var(--color-bg-dark);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
  }

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

  .footer-content {
    display: block;
  }

  /* About Section */
  .footer-about {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border-dark);
  }

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

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

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

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

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

  .footer-about-text {
    font-family: var(--font-primary);
    font-size: var(--fs-body-mobile);
    line-height: 1.7;
    color: #d1d5db;
    max-width: 500px;
  }

  @media (min-width: 768px) {
    .footer-about-text {
      font-size: var(--fs-body-tablet);
      line-height: 1.75;
    }
  }

  @media (min-width: 1024px) {
    .footer-about-text {
      font-size: var(--fs-body-desktop);
    }
  }

  /* Navigation Section */
  .footer-navigation {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border-dark);
  }

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

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

  .footer-nav-title {
    font-family: var(--font-primary);
    font-size: var(--fs-h4-mobile);
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  @media (min-width: 768px) {
    .footer-nav-title {
      font-size: var(--fs-h4-tablet);
      margin-bottom: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-nav-title {
      font-size: var(--fs-h4-desktop);
      margin-bottom: 1.5rem;
    }
  }

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

  @media (min-width: 768px) {
    .footer-nav-list {
      gap: 1rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .footer-nav-list {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
  }

  .footer-link {
    font-family: var(--font-primary);
    font-size: var(--fs-body-mobile);
    color: #9ca3af;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
  }

  @media (min-width: 768px) {
    .footer-link {
      font-size: var(--fs-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .footer-link {
      font-size: var(--fs-body-desktop);
    }
  }

  .footer-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
  }

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

  /* Legal Section */
  .footer-legal {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border-dark);
  }

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

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

  .footer-legal-title {
    font-family: var(--font-primary);
    font-size: var(--fs-h4-mobile);
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  @media (min-width: 768px) {
    .footer-legal-title {
      font-size: var(--fs-h4-tablet);
      margin-bottom: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-title {
      font-size: var(--fs-h4-desktop);
      margin-bottom: 1.5rem;
    }
  }

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

  @media (min-width: 768px) {
    .footer-legal-list {
      gap: 1rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  .footer-legal-link {
    font-family: var(--font-primary);
    font-size: var(--fs-body-mobile);
    color: #9ca3af;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
  }

  @media (min-width: 768px) {
    .footer-legal-link {
      font-size: var(--fs-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-link {
      font-size: var(--fs-body-desktop);
    }
  }

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

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

  /* Copyright Section */
  .footer-copyright {
    text-align: center;
    padding-top: 2rem;
  }

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

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

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: var(--fs-body-mobile);
    color: #6b7280;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .footer-copyright-text {
      font-size: var(--fs-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .footer-copyright-text {
      font-size: var(--fs-body-desktop);
    }
  }
    

/* Category Page Styles */
/* Category Page: Digital Life Kazakhstan */

/* Hero Section */
.category-page-digital-life-kazakhstan .category-hero-digital-life-kazakhstan {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.category-page-digital-life-kazakhstan .hero-content-digital-life-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .hero-content-digital-life-kazakhstan {
    gap: 2rem;
  }
}

.category-page-digital-life-kazakhstan .category-hero-digital-life-kazakhstan h1 {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .category-hero-digital-life-kazakhstan h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .category-hero-digital-life-kazakhstan h1 {
    font-size: 3.75rem;
  }
}

.category-page-digital-life-kazakhstan .category-hero-digital-life-kazakhstan p {
  color: #e0e0e0;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .category-hero-digital-life-kazakhstan p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .category-hero-digital-life-kazakhstan p {
    font-size: 1.125rem;
  }
}

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

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

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

.category-page-digital-life-kazakhstan .posts-grid-digital-life-kazakhstan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

/* Post Card */
.category-page-digital-life-kazakhstan .card-digital-life-kazakhstan {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  gap: 0.75rem;
  padding: 0;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan {
    gap: 1.5rem;
  }
}

.category-page-digital-life-kazakhstan .card-digital-life-kazakhstan:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.category-page-digital-life-kazakhstan .card-digital-life-kazakhstan img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan img {
    height: 280px;
  }
}

.category-page-digital-life-kazakhstan .card-digital-life-kazakhstan > *:not(img) {
  padding: 0 1rem;
}

.category-page-digital-life-kazakhstan .card-digital-life-kazakhstan > h3:first-of-type {
  padding-top: 1rem;
}

.category-page-digital-life-kazakhstan .card-digital-life-kazakhstan > a:last-child {
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan > *:not(img) {
    padding: 0 1.5rem;
  }

  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan > h3:first-of-type {
    padding-top: 1.5rem;
  }

  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan > a:last-child {
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan > *:not(img) {
    padding: 0 2rem;
  }

  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan > h3:first-of-type {
    padding-top: 2rem;
  }

  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan > a:last-child {
    padding-bottom: 2rem;
  }
}

.category-page-digital-life-kazakhstan .card-digital-life-kazakhstan h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan h3 {
    font-size: 1.75rem;
  }
}

.category-page-digital-life-kazakhstan .card-digital-life-kazakhstan p {
  color: var(--color-text-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan p {
    font-size: 1rem;
  }
}

.category-page-digital-life-kazakhstan .card-digital-life-kazakhstan a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.category-page-digital-life-kazakhstan .card-digital-life-kazakhstan a:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan a {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .card-digital-life-kazakhstan a {
    font-size: 1rem;
  }
}

/* Additional Section 1 */
.category-page-digital-life-kazakhstan .additional-section-1-digital-life-kazakhstan {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

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

.category-page-digital-life-kazakhstan .additional-content-1-digital-life-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .additional-content-1-digital-life-kazakhstan {
    gap: 2.5rem;
  }
}

.category-page-digital-life-kazakhstan .additional-section-1-digital-life-kazakhstan h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .additional-section-1-digital-life-kazakhstan h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .additional-section-1-digital-life-kazakhstan h2 {
    font-size: 2.5rem;
  }
}

.category-page-digital-life-kazakhstan .benefits-list-digital-life-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .benefits-list-digital-life-kazakhstan {
    gap: 1.5rem;
  }
}

.category-page-digital-life-kazakhstan .benefits-list-digital-life-kazakhstan li {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  margin: 0;
  padding: 1rem;
  background-color: #f8f9fb;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .benefits-list-digital-life-kazakhstan li {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .benefits-list-digital-life-kazakhstan li {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.category-page-digital-life-kazakhstan .benefit-icon-digital-life-kazakhstan {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .benefit-icon-digital-life-kazakhstan {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}

.category-page-digital-life-kazakhstan .benefit-text-digital-life-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .benefit-text-digital-life-kazakhstan {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .benefit-text-digital-life-kazakhstan {
    font-size: 1rem;
  }
}

.category-page-digital-life-kazakhstan .benefit-text-digital-life-kazakhstan strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

/* Additional Section 2 */
.category-page-digital-life-kazakhstan .additional-section-2-digital-life-kazakhstan {
  background-color: #f8f9fb;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.category-page-digital-life-kazakhstan .additional-content-2-digital-life-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .additional-content-2-digital-life-kazakhstan {
    gap: 2.5rem;
  }
}

.category-page-digital-life-kazakhstan .additional-section-2-digital-life-kazakhstan h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .additional-section-2-digital-life-kazakhstan h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .additional-section-2-digital-life-kazakhstan h2 {
    font-size: 2.5rem;
  }
}

.category-page-digital-life-kazakhstan .trends-grid-digital-life-kazakhstan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .trends-grid-digital-life-kazakhstan {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.category-page-digital-life-kazakhstan .trend-item-digital-life-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-top: 3px solid var(--color-primary);
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .trend-item-digital-life-kazakhstan {
    gap: 1rem;
    padding: 2rem;
  }
}

.category-page-digital-life-kazakhstan .trend-item-digital-life-kazakhstan:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-page-digital-life-kazakhstan .trend-item-digital-life-kazakhstan h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .trend-item-digital-life-kazakhstan h3 {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .trend-item-digital-life-kazakhstan h3 {
    font-size: 1.5rem;
  }
}

.category-page-digital-life-kazakhstan .trend-item-digital-life-kazakhstan p {
  color: var(--color-text-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .category-page-digital-life-kazakhstan .trend-item-digital-life-kazakhstan p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .category-page-digital-life-kazakhstan .trend-item-digital-life-kazakhstan p {
    font-size: 1rem;
  }
}

/* Post Page 1 Styles */
.post-digital-payments-mobile-banking {
      width: 100%;
    }

    /* ===== BREADCRUMBS ===== */
    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-breadcrumbs {
      background-color: var(--color-bg-light);
      padding: 1rem 0;
      border-bottom: 1px solid var(--color-border);
      overflow: hidden;
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-breadcrumbs .container {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-breadcrumbs a {
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 500;
      transition: all var(--transition-base);
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-breadcrumbs span {
      color: var(--color-text-gray);
      font-size: 0.875rem;
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-breadcrumbs-separator {
      color: var(--color-text-gray);
      margin: 0 0.25rem;
    }

    /* ===== HERO SECTION ===== */
    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-hero {
      background-color: var(--color-bg-dark);
      color: var(--color-text-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-hero {
        padding: 6rem 0;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-hero-content {
        gap: 2rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-hero h1 {
      color: #ffffff;
      font-size: var(--fs-h1-mobile);
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-hero h1 {
        font-size: var(--fs-h1-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-hero h1 {
        font-size: var(--fs-h1-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-lead {
      color: #e0e0e0;
      font-size: var(--fs-body-mobile);
      line-height: 1.8;
      max-width: 700px;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-lead {
        font-size: var(--fs-body-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-lead {
        font-size: var(--fs-body-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-meta {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      font-size: 0.875rem;
      color: #b0b0b0;
      flex-wrap: wrap;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-meta {
        gap: 2rem;
      }
    }

    /* ===== CONTENT SECTION 1 ===== */
    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-1 {
      background-color: var(--color-bg-white);
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-1 {
        padding: 6rem 0;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-1-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-1-content {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-1-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-1-text {
        flex: 1;
        gap: 1.75rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-1 h2 {
      color: var(--color-text-dark);
      font-size: var(--fs-h2-mobile);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-1 h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-1 h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-1 p {
      color: var(--color-text-gray);
      line-height: 1.8;
      font-size: var(--fs-body-mobile);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-1 p {
        font-size: var(--fs-body-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-1 p {
        font-size: var(--fs-body-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-1-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-1-image {
        width: 45%;
        height: 350px;
        flex-shrink: 0;
      }
    }

    /* ===== CONTENT SECTION 2 ===== */
    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-2 {
      background-color: var(--color-primary-light);
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-2 {
        padding: 6rem 0;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-2-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-2-content {
        gap: 2rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-2 h2 {
      color: var(--color-text-dark);
      font-size: var(--fs-h2-mobile);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-2 h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-2 h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-2 p {
      color: var(--color-text-gray);
      line-height: 1.8;
      font-size: var(--fs-body-mobile);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-2 p {
        font-size: var(--fs-body-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-2 p {
        font-size: var(--fs-body-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-benefits-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-benefit-item {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-benefit-item {
        gap: 1.25rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-benefit-icon {
      color: var(--color-primary);
      font-size: var(--icon-lg);
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-benefit-item h3 {
      color: var(--color-text-dark);
      font-size: var(--fs-h4-mobile);
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-benefit-item h3 {
        font-size: var(--fs-h4-tablet);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-benefit-item p {
      color: var(--color-text-gray);
      font-size: 0.875rem;
      margin: 0;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-benefit-item p {
        font-size: 0.9375rem;
      }
    }

    /* ===== CONTENT SECTION 3 ===== */
    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-3 {
      background-color: var(--color-bg-white);
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-3 {
        padding: 6rem 0;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-3-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-3-content {
        gap: 2rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-3 h2 {
      color: var(--color-text-dark);
      font-size: var(--fs-h2-mobile);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-3 h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-3 h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-3 p {
      color: var(--color-text-gray);
      line-height: 1.8;
      font-size: var(--fs-body-mobile);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-3 p {
        font-size: var(--fs-body-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-3 p {
        font-size: var(--fs-body-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-tips-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-tips-list {
        gap: 1.5rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-tips-list li {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-tips-list li {
        gap: 1.25rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-tip-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background-color: var(--color-primary);
      color: #ffffff;
      border-radius: 50%;
      font-weight: 700;
      flex-shrink: 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-tip-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-tips-list li h3 {
      color: var(--color-text-dark);
      font-size: var(--fs-h4-mobile);
      margin: 0 0 0.25rem 0;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-tips-list li h3 {
        font-size: var(--fs-h4-tablet);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-tips-list li p {
      color: var(--color-text-gray);
      font-size: 0.875rem;
      margin: 0;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-tips-list li p {
        font-size: 0.9375rem;
      }
    }

    /* ===== CONTENT SECTION 4 ===== */
    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-4 {
      background-color: #f0f5ff;
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-4 {
        padding: 6rem 0;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-4-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-4-content {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-4-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-4-image {
        width: 45%;
        height: 350px;
        flex-shrink: 0;
        order: 2;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-4-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-section-4-text {
        flex: 1;
        gap: 1.75rem;
        order: 1;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-4 h2 {
      color: var(--color-text-dark);
      font-size: var(--fs-h2-mobile);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-4 h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-4 h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-4 p {
      color: var(--color-text-gray);
      line-height: 1.8;
      font-size: var(--fs-body-mobile);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-4 p {
        font-size: var(--fs-body-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-content-4 p {
        font-size: var(--fs-body-desktop);
      }
    }

    /* ===== CONCLUSION SECTION ===== */
    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion {
      background-color: var(--color-bg-dark);
      color: var(--color-text-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion {
        padding: 6rem 0;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 800px;
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion-content {
        gap: 2rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion h2 {
      color: #ffffff;
      font-size: var(--fs-h2-mobile);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion p {
      color: #e0e0e0;
      line-height: 1.8;
      font-size: var(--fs-body-mobile);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion p {
        font-size: var(--fs-body-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-conclusion p {
        font-size: var(--fs-body-desktop);
      }
    }

    /* ===== RELATED POSTS SECTION ===== */
    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-related {
      background-color: var(--color-bg-light);
      color: var(--color-text-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-related {
        padding: 6rem 0;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-related-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-related-content {
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-related-content {
        gap: 2.5rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-related h2 {
      color: var(--color-text-dark);
      font-size: var(--fs-h2-mobile);
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-related h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-related h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-posts-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: var(--color-bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-card {
        gap: 1.25rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-body {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-body {
        padding: 1.75rem;
        gap: 1.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-body {
        padding: 1.5rem;
        gap: 1rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-card h3 {
      color: var(--color-text-dark);
      font-size: var(--fs-h4-mobile);
      margin: 0;
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-card h3 {
        font-size: var(--fs-h4-tablet);
      }
    }

    @media (min-width: 1024px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-card h3 {
        font-size: 1.25rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-card p {
      color: var(--color-text-gray);
      font-size: 0.875rem;
      margin: 0;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-card p {
        font-size: 0.9375rem;
      }
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.875rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.5rem;
      transition: all var(--transition-base);
    }

    .post-digital-payments-mobile-banking .digital-payments-mobile-banking-post-link:hover {
      color: var(--color-primary-dark);
      gap: 0.75rem;
    }

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

    /* ===== POST SMART HOMES IOT TECHNOLOGY - COMPLETE ISOLATION ===== */

    .post-smart-homes-iot-technology {
      width: 100%;
    }

    /* BREADCRUMBS */
    .post-smart-homes-iot-technology .smart-homes-iot-technology-breadcrumbs {
      overflow: hidden;
      background-color: #f8f9fb;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--color-border);
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-breadcrumbs {
        padding: 2rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-breadcrumbs {
        padding: 2.5rem 0;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-breadcrumbs-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-breadcrumbs a {
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 500;
      transition: color var(--transition-base);
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-breadcrumbs-separator {
      color: var(--color-text-gray);
      font-size: 0.875rem;
      font-weight: 400;
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-breadcrumbs-current {
      color: var(--color-text-gray);
      font-size: 0.875rem;
      font-weight: 500;
    }

    /* HERO SECTION */
    .post-smart-homes-iot-technology .smart-homes-iot-technology-hero {
      overflow: hidden;
      background-color: var(--color-bg-dark);
      padding: 4rem 0;
      position: relative;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-hero {
        padding: 5.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-hero {
        padding: 7rem 0;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: -10%;
      width: 400px;
      height: 400px;
      background-color: rgba(0, 184, 169, 0.08);
      border-radius: 50%;
      z-index: 0;
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-hero::before {
        width: 500px;
        height: 500px;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-hero-content {
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-hero-content {
        gap: 2rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-hero h1 {
      color: #ffffff;
      font-size: 2.25rem;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-hero h1 {
        font-size: 3.5rem;
        max-width: 85%;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-hero-meta {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-hero-meta-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
      color: #d4d8e0;
      font-size: 0.875rem;
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-hero-meta-icon {
      color: var(--color-accent);
      font-size: 1rem;
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-lead {
      font-size: 1.125rem;
      line-height: 1.7;
      color: #d4d8e0;
      max-width: 700px;
      font-weight: 400;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-lead {
        font-size: 1.25rem;
      }
    }

    /* CONTENT SECTION 1 */
    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1 {
      overflow: hidden;
      background-color: #ffffff;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1 {
        padding: 6rem 0;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1-content {
        gap: 2rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1 h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      line-height: 1.3;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1 h2 {
        font-size: 2.75rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1 p {
      color: var(--color-text-gray);
      line-height: 1.8;
      font-size: 0.9375rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1 p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-1 p:last-child {
      margin-bottom: 0;
    }

    /* CONTENT SECTION 2 - WITH IMAGE */
    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2 {
      overflow: hidden;
      background-color: #f8f9fb;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2 {
        padding: 6rem 0;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2-content {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2-text {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2-text {
        flex: 1;
        gap: 1.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2 h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      line-height: 1.3;
      font-weight: 700;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2 h2 {
        font-size: 2.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2 p {
      color: var(--color-text-gray);
      line-height: 1.8;
      font-size: 0.9375rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2 p {
        font-size: 1rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2-image {
        flex: 0 0 45%;
        height: 400px;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-2-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* CONTENT SECTION 3 - FEATURES/BENEFITS */
    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-3 {
      overflow: hidden;
      background-color: #ffffff;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-3 {
        padding: 6rem 0;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-3-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-3-content {
        gap: 2.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-3 h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      line-height: 1.3;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-3 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-3 h2 {
        font-size: 2.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-3-intro {
      color: var(--color-text-gray);
      line-height: 1.8;
      font-size: 0.9375rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-3-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-features-grid {
        gap: 2.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-feature-item {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-feature-item {
        gap: 1.25rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-feature-icon {
      width: 50px;
      height: 50px;
      background-color: var(--color-primary-light);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      color: var(--color-primary);
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-feature-item h3 {
      color: var(--color-text-dark);
      font-size: 1.25rem;
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-feature-item h3 {
        font-size: 1.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-feature-item p {
      color: var(--color-text-gray);
      line-height: 1.7;
      font-size: 0.875rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-feature-item p {
        font-size: 0.9375rem;
      }
    }

    /* CONTENT SECTION 4 - HIGHLIGHT BOX */
    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4 {
      overflow: hidden;
      background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4 {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4 {
        padding: 5rem 0;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4-content {
        gap: 2rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4 h2 {
      color: #ffffff;
      font-size: 1.875rem;
      line-height: 1.3;
      font-weight: 700;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4 h2 {
        font-size: 2.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4 p {
      color: #e6f0ff;
      line-height: 1.8;
      font-size: 0.9375rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4 p {
        font-size: 1rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4-list {
        gap: 1.25rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4-list li {
      color: #e6f0ff;
      line-height: 1.7;
      font-size: 0.9375rem;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4-list li {
        font-size: 1rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-4-list li::before {
      content: '✓';
      color: #ffffff;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* CONTENT SECTION 5 - PRACTICAL TIPS */
    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-5 {
      overflow: hidden;
      background-color: #ffffff;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-5 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-5 {
        padding: 6rem 0;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-5-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-5-content {
        gap: 2.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-section-5 h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      line-height: 1.3;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-5 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-section-5 h2 {
        font-size: 2.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-tips-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-tips-list {
        gap: 2rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-tip-item {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
      background-color: #f8f9fb;
      border-left: 4px solid var(--color-accent);
      border-radius: var(--radius-md);
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-tip-item {
        padding: 2rem;
        gap: 1rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-tip-item h3 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-tip-item h3 {
        font-size: 1.25rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-tip-item p {
      color: var(--color-text-gray);
      line-height: 1.7;
      font-size: 0.875rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-tip-item p {
        font-size: 0.9375rem;
      }
    }

    /* CONCLUSION SECTION */
    .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion {
      overflow: hidden;
      background-color: #f8f9fb;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion {
        padding: 6rem 0;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 850px;
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion-content {
        gap: 2rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      line-height: 1.3;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion h2 {
        font-size: 2.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion p {
      color: var(--color-text-gray);
      line-height: 1.8;
      font-size: 0.9375rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-conclusion p:last-child {
      margin-bottom: 0;
    }

    /* RELATED POSTS SECTION */
    .post-smart-homes-iot-technology .smart-homes-iot-technology-related {
      overflow: hidden;
      background-color: #ffffff;
      padding: 3rem 0;
      border-top: 1px solid var(--color-border);
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related {
        padding: 6rem 0;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related-content {
        gap: 3rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-header {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      line-height: 1.3;
      font-weight: 700;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related h2 {
        font-size: 2.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-subtitle {
      color: var(--color-text-gray);
      font-size: 0.9375rem;
      font-weight: 400;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related-subtitle {
        font-size: 1rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
      background-color: #ffffff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card {
        padding: 1.25rem;
        gap: 1.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card {
        padding: 1.5rem;
        gap: 1.5rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: var(--color-primary-light);
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card-image {
      width: 100%;
      height: 180px;
      border-radius: var(--radius-md);
      overflow: hidden;
      background-color: #f0f0f0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card-image {
        height: 200px;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card h3 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card-description {
      color: var(--color-text-gray);
      font-size: 0.875rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card-description {
        font-size: 0.9375rem;
      }
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card-link {
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 600;
      transition: color var(--transition-base);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: auto;
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card-link:hover {
      color: var(--color-primary-dark);
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card-link::after {
      content: '→';
      transition: transform var(--transition-base);
    }

    .post-smart-homes-iot-technology .smart-homes-iot-technology-related-card:hover .smart-homes-iot-technology-related-card-link::after {
      transform: translateX(4px);
    }

/* Post Page 3 Styles */
/* Post: Cloud Storage Services - Complete Isolation */

.post-cloud-storage-services {
  width: 100%;
}

/* Breadcrumbs */
.cloud-storage-services-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.cloud-storage-services-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cloud-storage-services-breadcrumbs a {
  color: var(--color-primary);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.cloud-storage-services-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.cloud-storage-services-breadcrumb-separator {
  color: var(--color-text-gray);
  font-size: 0.875rem;
  margin: 0 0.25rem;
}

.cloud-storage-services-breadcrumbs span:last-child {
  color: var(--color-text-gray);
  font-size: 0.875rem;
}

/* Hero Section */
.cloud-storage-services-hero {
  background-color: var(--color-bg-dark);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .cloud-storage-services-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .cloud-storage-services-hero {
    padding: 8rem 0;
  }
}

.cloud-storage-services-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cloud-storage-services-hero h1 {
  color: var(--color-text-light);
  line-height: 1.1;
}

.cloud-storage-services-lead {
  color: var(--color-text-light);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .cloud-storage-services-lead {
    font-size: 1.25rem;
  }
}

/* Intro Section */
.cloud-storage-services-intro {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cloud-storage-services-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .cloud-storage-services-intro {
    padding: 6rem 0;
  }
}

.cloud-storage-services-intro-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .cloud-storage-services-intro-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.cloud-storage-services-intro-text {
  flex: 1;
}

.cloud-storage-services-intro h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.cloud-storage-services-intro p {
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cloud-storage-services-intro-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
  .cloud-storage-services-intro-image {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

/* Benefits Section */
.cloud-storage-services-benefits {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cloud-storage-services-benefits {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .cloud-storage-services-benefits {
    padding: 6rem 0;
  }
}

.cloud-storage-services-benefits h2 {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.cloud-storage-services-benefits > .container > div > p:first-of-type {
  color: var(--color-text-gray);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.cloud-storage-services-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

@media (min-width: 1024px) {
  .cloud-storage-services-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.cloud-storage-services-benefit-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  gap: 1rem;
}

@media (min-width: 768px) {
  .cloud-storage-services-benefit-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

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

.cloud-storage-services-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.cloud-storage-services-benefit-card h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cloud-storage-services-benefit-card p {
  color: var(--color-text-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Popular Services Section */
.cloud-storage-services-popular {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cloud-storage-services-popular {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .cloud-storage-services-popular {
    padding: 6rem 0;
  }
}

.cloud-storage-services-popular h2 {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.cloud-storage-services-popular > .container > div > p:first-of-type {
  color: var(--color-text-gray);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.cloud-storage-services-services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cloud-storage-services-service-item {
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .cloud-storage-services-service-item {
    padding: 2rem;
  }
}

.cloud-storage-services-service-item:hover {
  box-shadow: var(--shadow-md);
}

.cloud-storage-services-service-item h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.cloud-storage-services-service-item p {
  color: var(--color-text-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Practical Section */
.cloud-storage-services-practical {
  background-color: var(--color-primary-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cloud-storage-services-practical {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .cloud-storage-services-practical {
    padding: 6rem 0;
  }
}

.cloud-storage-services-practical h2 {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.cloud-storage-services-practical > .container > div > p:nth-of-type(1) {
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.cloud-storage-services-tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cloud-storage-services-tips {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .cloud-storage-services-tips {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.cloud-storage-services-tip {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .cloud-storage-services-tip {
    gap: 2rem;
    padding: 2rem;
  }
}

.cloud-storage-services-tip-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
}

.cloud-storage-services-tip-content h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.cloud-storage-services-tip-content p {
  color: var(--color-text-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Security Section */
.cloud-storage-services-security {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cloud-storage-services-security {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .cloud-storage-services-security {
    padding: 6rem 0;
  }
}

.cloud-storage-services-security-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .cloud-storage-services-security-content {
    flex-direction: row-reverse;
    align-items: center;
    gap: 3rem;
  }
}

.cloud-storage-services-security-text {
  flex: 1;
}

.cloud-storage-services-security h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.cloud-storage-services-security p {
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cloud-storage-services-security strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.cloud-storage-services-security-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
  .cloud-storage-services-security-image {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

/* Conclusion Section */
.cloud-storage-services-conclusion {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cloud-storage-services-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .cloud-storage-services-conclusion {
    padding: 6rem 0;
  }
}

.cloud-storage-services-conclusion h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.cloud-storage-services-conclusion p {
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cloud-storage-services-conclusion-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cloud-storage-services-conclusion-list li {
  color: var(--color-text-gray);
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.cloud-storage-services-conclusion-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Related Section */
.cloud-storage-services-related {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .cloud-storage-services-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .cloud-storage-services-related {
    padding: 6rem 0;
  }
}

.cloud-storage-services-related h2 {
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

.cloud-storage-services-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cloud-storage-services-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

.cloud-storage-services-related-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-decoration: none;
}

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

.cloud-storage-services-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.cloud-storage-services-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-base);
}

.cloud-storage-services-related-card:hover .cloud-storage-services-related-card-image img {
  transform: scale(1.05);
}

.cloud-storage-services-related-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .cloud-storage-services-related-card-content {
    padding: 2rem;
    gap: 1rem;
  }
}

.cloud-storage-services-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0;
}

.cloud-storage-services-related-card p {
  color: var(--color-text-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .cloud-storage-services-intro-text,
  .cloud-storage-services-security-text {
    width: 100%;
  }
}

/* Post Page 4 Styles */
/* Post: Telemedicine - Online Healthcare */
    .post-telemedicine-online-healthcare {
      width: 100%;
    }

    /* Breadcrumbs Navigation */
    .telemedicine-online-healthcare-breadcrumbs {
      background-color: var(--color-bg-light);
      padding: 1rem 0;
      border-bottom: 1px solid var(--color-border);
      overflow: hidden;
    }

    .telemedicine-online-healthcare-breadcrumbs .container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .telemedicine-online-healthcare-breadcrumbs a {
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 500;
      transition: all var(--transition-base);
    }

    .telemedicine-online-healthcare-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .telemedicine-online-healthcare-breadcrumbs span {
      color: var(--color-text-gray);
      font-size: 0.875rem;
      font-weight: 500;
    }

    .telemedicine-online-healthcare-breadcrumbs .separator {
      color: var(--color-text-gray);
      margin: 0 0.25rem;
    }

    /* Hero Section */
    .telemedicine-online-healthcare-hero {
      background-color: #f0f5ff;
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .telemedicine-online-healthcare-hero {
        padding: 6rem 0;
      }
    }

    .telemedicine-online-healthcare-hero .container {
      position: relative;
      z-index: 2;
    }

    .telemedicine-online-healthcare-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-hero-content {
        gap: 2rem;
      }
    }

    .telemedicine-online-healthcare-hero h1 {
      color: #0a0e27;
      font-size: 2.25rem;
      line-height: 1.2;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .telemedicine-online-healthcare-hero h1 {
        font-size: 3.5rem;
      }
    }

    .telemedicine-online-healthcare-hero-lead {
      font-size: 1.0625rem;
      line-height: 1.7;
      color: #2d3748;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-hero-lead {
        font-size: 1.125rem;
      }
    }

    .telemedicine-online-healthcare-hero-meta {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      align-items: center;
      flex-wrap: wrap;
      color: #4a5568;
      font-size: 0.875rem;
    }

    .telemedicine-online-healthcare-hero-meta-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    .telemedicine-online-healthcare-hero-meta-item i {
      color: var(--color-primary);
      font-size: 1rem;
    }

    /* Decorative Element */
    .telemedicine-online-healthcare-hero-decoration {
      position: absolute;
      top: -50px;
      right: -50px;
      width: 300px;
      height: 300px;
      background-color: rgba(0, 102, 204, 0.08);
      border-radius: 50%;
      z-index: 1;
      pointer-events: none;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-hero-decoration {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -100px;
      }
    }

    /* Content Section 1 */
    .telemedicine-online-healthcare-content-1 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-content-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .telemedicine-online-healthcare-content-1 {
        padding: 6rem 0;
      }
    }

    .telemedicine-online-healthcare-content-1-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .telemedicine-online-healthcare-content-1-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
      }
    }

    .telemedicine-online-healthcare-content-1-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      flex: 1;
    }

    .telemedicine-online-healthcare-content-1-text h2 {
      color: #0a0e27;
      margin-bottom: 0;
    }

    .telemedicine-online-healthcare-content-1-text p {
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .telemedicine-online-healthcare-content-1-text p:not(:last-child) {
      margin-bottom: 1.5rem;
    }

    .telemedicine-online-healthcare-content-1-image {
      flex: 1;
      min-height: 300px;
      overflow: hidden;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .telemedicine-online-healthcare-content-1-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Content Section 2 */
    .telemedicine-online-healthcare-content-2 {
      background-color: #f8f9fb;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-content-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .telemedicine-online-healthcare-content-2 {
        padding: 6rem 0;
      }
    }

    .telemedicine-online-healthcare-content-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .telemedicine-online-healthcare-content-2-content h2 {
      color: #0a0e27;
      margin-bottom: 0;
    }

    .telemedicine-online-healthcare-content-2-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .telemedicine-online-healthcare-content-2-text p {
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .telemedicine-online-healthcare-benefits {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

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

    @media (min-width: 1024px) {
      .telemedicine-online-healthcare-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .telemedicine-online-healthcare-benefit-item {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
      background-color: var(--color-bg-white);
      border-radius: var(--radius-md);
      border-left: 4px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-benefit-item {
        padding: 1.75rem;
        gap: 1rem;
      }
    }

    .telemedicine-online-healthcare-benefit-item h4 {
      color: #0a0e27;
      margin-bottom: 0;
      font-size: 1.125rem;
    }

    .telemedicine-online-healthcare-benefit-item p {
      color: #4a5568;
      margin-bottom: 0;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .telemedicine-online-healthcare-benefit-icon {
      color: var(--color-primary);
      font-size: 1.5rem;
    }

    /* Content Section 3 */
    .telemedicine-online-healthcare-content-3 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-content-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .telemedicine-online-healthcare-content-3 {
        padding: 6rem 0;
      }
    }

    .telemedicine-online-healthcare-content-3-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .telemedicine-online-healthcare-content-3-content h2 {
      color: #0a0e27;
      margin-bottom: 0;
    }

    .telemedicine-online-healthcare-steps {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 2rem;
    }

    .telemedicine-online-healthcare-step {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-step {
        gap: 2rem;
      }
    }

    .telemedicine-online-healthcare-step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      min-width: 50px;
      background-color: var(--color-primary);
      color: white;
      border-radius: 50%;
      font-weight: 700;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .telemedicine-online-healthcare-step-text {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding-top: 0.25rem;
    }

    .telemedicine-online-healthcare-step-text h4 {
      color: #0a0e27;
      margin-bottom: 0;
      font-size: 1.125rem;
    }

    .telemedicine-online-healthcare-step-text p {
      color: #4a5568;
      margin-bottom: 0;
      line-height: 1.6;
    }

    /* Content Section 4 */
    .telemedicine-online-healthcare-content-4 {
      background-color: #f8f9fb;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-content-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .telemedicine-online-healthcare-content-4 {
        padding: 6rem 0;
      }
    }

    .telemedicine-online-healthcare-content-4-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .telemedicine-online-healthcare-content-4-content h2 {
      color: #0a0e27;
      margin-bottom: 0;
    }

    .telemedicine-online-healthcare-highlight-box {
      background-color: #e6f0ff;
      border-left: 5px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin-top: 1.5rem;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-highlight-box {
        padding: 2rem;
        margin-top: 2rem;
      }
    }

    .telemedicine-online-healthcare-highlight-box h4 {
      color: #0a0e27;
      margin-bottom: 0.75rem;
      font-size: 1.125rem;
    }

    .telemedicine-online-healthcare-highlight-box p {
      color: #2d3748;
      margin-bottom: 0;
      line-height: 1.7;
    }

    .telemedicine-online-healthcare-content-4-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .telemedicine-online-healthcare-content-4-text p {
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 0;
    }

    /* Conclusion Section */
    .telemedicine-online-healthcare-conclusion {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
      border-top: 1px solid var(--color-border);
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-conclusion {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .telemedicine-online-healthcare-conclusion {
        padding: 6rem 0;
      }
    }

    .telemedicine-online-healthcare-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 800px;
    }

    .telemedicine-online-healthcare-conclusion h2 {
      color: #0a0e27;
      margin-bottom: 0;
    }

    .telemedicine-online-healthcare-conclusion p {
      color: #4a5568;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .telemedicine-online-healthcare-conclusion p:not(:last-child) {
      margin-bottom: 1.5rem;
    }

    /* Related Posts Section */
    .telemedicine-online-healthcare-related {
      background-color: #f8f9fb;
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .telemedicine-online-healthcare-related {
        padding: 6rem 0;
      }
    }

    .telemedicine-online-healthcare-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .telemedicine-online-healthcare-related-heading {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .telemedicine-online-healthcare-related h2 {
      color: #0a0e27;
      margin-bottom: 0;
    }

    .telemedicine-online-healthcare-related-subtitle {
      color: #4a5568;
      font-size: 1rem;
    }

    .telemedicine-online-healthcare-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

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

    .telemedicine-online-healthcare-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: var(--color-bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-related-card {
        gap: 1.25rem;
      }
    }

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

    .telemedicine-online-healthcare-related-card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background-color: var(--color-bg-light);
    }

    .telemedicine-online-healthcare-related-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .telemedicine-online-healthcare-related-card-body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-related-card-body {
        padding: 1.75rem;
        gap: 1rem;
      }
    }

    .telemedicine-online-healthcare-related-card h3 {
      color: #0a0e27;
      margin-bottom: 0;
      font-size: 1.25rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .telemedicine-online-healthcare-related-card h3 {
        font-size: 1.375rem;
      }
    }

    .telemedicine-online-healthcare-related-card p {
      color: #4a5568;
      margin-bottom: 0;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .telemedicine-online-healthcare-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.9375rem;
      margin-top: 0.5rem;
      transition: all var(--transition-base);
    }

    .telemedicine-online-healthcare-related-card-link:hover {
      color: var(--color-primary-dark);
      gap: 0.75rem;
    }

    .telemedicine-online-healthcare-related-card-link i {
      font-size: 1rem;
    }

/* Post Page 5 Styles */
/* Online Education Platforms - Complete CSS Isolation */
    
    .post-online-education-platforms {
      width: 100%;
    }

    /* Breadcrumbs Navigation */
    .online-education-platforms-breadcrumbs {
      background-color: var(--color-bg-light);
      padding: 1.5rem 0;
      overflow: hidden;
    }

    .online-education-platforms-breadcrumbs .container {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .online-education-platforms-breadcrumbs a {
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 500;
      transition: color var(--transition-base);
    }

    .online-education-platforms-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .online-education-platforms-breadcrumbs span {
      color: var(--color-text-gray);
      font-size: 0.875rem;
      font-weight: 500;
    }

    .online-education-platforms-breadcrumbs .breadcrumb-separator {
      color: var(--color-border);
      margin: 0 0.25rem;
    }

    /* Hero Section */
    .online-education-platforms-hero {
      background: linear-gradient(135deg, #0a0e27 0%, #1a2456 100%);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .online-education-platforms-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-hero {
        padding: 6rem 0;
      }
    }

    .online-education-platforms-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 800px;
    }

    @media (min-width: 768px) {
      .online-education-platforms-hero-content {
        gap: 2rem;
      }
    }

    .online-education-platforms-hero h1 {
      color: #ffffff;
      font-size: var(--fs-h1-mobile);
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .online-education-platforms-hero h1 {
        font-size: var(--fs-h1-tablet);
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-hero h1 {
        font-size: var(--fs-h1-desktop);
      }
    }

    .online-education-platforms-lead {
      color: #e0e0e0;
      font-size: 1.0625rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (min-width: 768px) {
      .online-education-platforms-lead {
        font-size: 1.125rem;
      }
    }

    .online-education-platforms-meta {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 1rem;
      font-size: 0.875rem;
      color: #b0b8d4;
    }

    /* Section 1 - What is Online Education */
    .online-education-platforms-section-1 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-1 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-1 {
        padding: 6rem 0;
      }
    }

    .online-education-platforms-section-1-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-1-content {
        gap: 2rem;
      }
    }

    .online-education-platforms-section-1 h2 {
      color: var(--color-text-dark);
      font-size: var(--fs-h2-mobile);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-1 h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-1 h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .online-education-platforms-section-1 p {
      color: var(--color-text-gray);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-1 p {
        font-size: 1.0625rem;
      }
    }

    /* Section 2 - Popular Platforms */
    .online-education-platforms-section-2 {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-2 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-2 {
        padding: 6rem 0;
      }
    }

    .online-education-platforms-section-2-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-2-content {
        gap: 2rem;
      }
    }

    .online-education-platforms-section-2 h2 {
      color: var(--color-text-dark);
      font-size: var(--fs-h2-mobile);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-2 h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-2 h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .online-education-platforms-section-2 p {
      color: var(--color-text-gray);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-2 p {
        font-size: 1.0625rem;
      }
    }

    .online-education-platforms-platforms-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }

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

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

    .online-education-platforms-platform-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background-color: var(--color-bg-white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
      border-left: 4px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .online-education-platforms-platform-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

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

    .online-education-platforms-platform-card h3 {
      color: var(--color-primary);
      font-size: var(--fs-h3-mobile);
      margin: 0;
    }

    @media (min-width: 768px) {
      .online-education-platforms-platform-card h3 {
        font-size: var(--fs-h3-tablet);
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-platform-card h3 {
        font-size: var(--fs-h3-desktop);
      }
    }

    .online-education-platforms-platform-card p {
      color: var(--color-text-gray);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (min-width: 768px) {
      .online-education-platforms-platform-card p {
        font-size: 1rem;
      }
    }

    /* Section 3 - Key Benefits */
    .online-education-platforms-section-3 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-3 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-3 {
        padding: 6rem 0;
      }
    }

    .online-education-platforms-section-3-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-3-content {
        gap: 2rem;
      }
    }

    .online-education-platforms-section-3 h2 {
      color: var(--color-text-dark);
      font-size: var(--fs-h2-mobile);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-3 h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-3 h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .online-education-platforms-benefits-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }

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

    @media (min-width: 1024px) {
      .online-education-platforms-benefits-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }
    }

    .online-education-platforms-benefit-item {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
    }

    @media (min-width: 768px) {
      .online-education-platforms-benefit-item {
        gap: 1.5rem;
      }
    }

    .online-education-platforms-benefit-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--color-primary-light);
      border-radius: var(--radius-md);
      color: var(--color-primary);
      font-size: 1.5rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
      }
    }

    .online-education-platforms-benefit-content {
      flex: 1;
    }

    .online-education-platforms-benefit-item h3 {
      color: var(--color-text-dark);
      font-size: var(--fs-h4-mobile);
      margin: 0 0 0.5rem 0;
    }

    @media (min-width: 768px) {
      .online-education-platforms-benefit-item h3 {
        font-size: var(--fs-h4-tablet);
      }
    }

    .online-education-platforms-benefit-item p {
      color: var(--color-text-gray);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (min-width: 768px) {
      .online-education-platforms-benefit-item p {
        font-size: 1rem;
      }
    }

    /* Section 4 - Learning Tips */
    .online-education-platforms-section-4 {
      background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-4 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-4 {
        padding: 6rem 0;
      }
    }

    .online-education-platforms-section-4-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-4-content {
        gap: 2rem;
      }
    }

    .online-education-platforms-section-4 h2 {
      color: #ffffff;
      font-size: var(--fs-h2-mobile);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-4 h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-4 h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .online-education-platforms-section-4 p {
      color: #e0e0e0;
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-4 p {
        font-size: 1.0625rem;
      }
    }

    .online-education-platforms-tips-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-top: 2rem;
      counter-reset: tip-counter;
      list-style: none;
      padding: 0;
      margin-left: 0;
    }

    @media (min-width: 768px) {
      .online-education-platforms-tips-list {
        gap: 1.5rem;
      }
    }

    .online-education-platforms-tips-list li {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
      counter-increment: tip-counter;
      margin: 0;
    }

    @media (min-width: 768px) {
      .online-education-platforms-tips-list li {
        gap: 1.5rem;
      }
    }

    .online-education-platforms-tips-list li::before {
      content: counter(tip-counter);
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-tips-list li::before {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
      }
    }

    .online-education-platforms-tips-list li strong {
      color: #ffffff;
      font-weight: 700;
      display: block;
      margin-bottom: 0.25rem;
      font-size: 1rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-tips-list li strong {
        font-size: 1.0625rem;
      }
    }

    .online-education-platforms-tips-list li span {
      color: #e0e0e0;
      display: block;
      line-height: 1.6;
    }

    /* Section 5 - Conclusion */
    .online-education-platforms-section-5 {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-5 {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-5 {
        padding: 6rem 0;
      }
    }

    .online-education-platforms-section-5-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-5-content {
        gap: 2rem;
      }
    }

    .online-education-platforms-section-5 h2 {
      color: var(--color-text-dark);
      font-size: var(--fs-h2-mobile);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-5 h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-section-5 h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .online-education-platforms-section-5 p {
      color: var(--color-text-gray);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-section-5 p {
        font-size: 1.0625rem;
      }
    }

    .online-education-platforms-highlight-box {
      background-color: var(--color-primary-light);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin-top: 1.5rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-highlight-box {
        padding: 2rem;
      }
    }

    .online-education-platforms-highlight-box p {
      color: var(--color-primary-dark);
      font-weight: 500;
      margin: 0;
    }

    /* Related Posts Section */
    .online-education-platforms-related {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .online-education-platforms-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-related {
        padding: 6rem 0;
      }
    }

    .online-education-platforms-related-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .online-education-platforms-related-content {
        gap: 2rem;
      }
    }

    .online-education-platforms-related h2 {
      color: var(--color-text-dark);
      font-size: var(--fs-h2-mobile);
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-related h2 {
        font-size: var(--fs-h2-tablet);
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-related h2 {
        font-size: var(--fs-h2-desktop);
      }
    }

    .online-education-platforms-related-description {
      color: var(--color-text-gray);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-related-description {
        font-size: 1.0625rem;
      }
    }

    .online-education-platforms-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .online-education-platforms-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .online-education-platforms-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .online-education-platforms-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background-color: var(--color-bg-light);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .online-education-platforms-related-card {
        gap: 1.25rem;
      }
    }

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

    .online-education-platforms-related-card-image {
      width: 100%;
      height: 200px;
      background-color: #e0e0e0;
      object-fit: cover;
      display: block;
    }

    .online-education-platforms-related-card-body {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

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

    .online-education-platforms-related-card h3 {
      color: var(--color-text-dark);
      font-size: var(--fs-h3-mobile);
      margin: 0;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .online-education-platforms-related-card h3 {
        font-size: var(--fs-h3-tablet);
      }
    }

    .online-education-platforms-related-card p {
      color: var(--color-text-gray);
      font-size: 0.875rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .online-education-platforms-related-card p {
        font-size: 0.9375rem;
      }
    }

    .online-education-platforms-related-card-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.875rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.5rem;
      transition: all var(--transition-base);
    }

    .online-education-platforms-related-card-link:hover {
      color: var(--color-primary-dark);
      gap: 0.75rem;
    }

/* Privacy Page Styles */
.legal-docs {
  font-family: var(--font-primary);
  overflow: hidden;
}

.legal-docs section {
  overflow: hidden;
  padding: var(--sp-xl) 0;
}

@media (min-width: 768px) {
  .legal-docs section {
    padding: var(--sp-3xl) 0;
  }
}

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

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

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

.legal-docs-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

@media (min-width: 768px) {
  .legal-docs-content {
    gap: var(--sp-xl);
  }
}

.legal-docs-hero {
  background-color: var(--color-bg-dark);
}

.legal-docs-hero h1 {
  font-size: var(--fs-h1-mobile);
  line-height: 1.2;
  color: var(--color-text-light);
  margin: 0 0 var(--sp-md) 0;
}

@media (min-width: 768px) {
  .legal-docs-hero h1 {
    font-size: var(--fs-h1-tablet);
    margin-bottom: var(--sp-lg);
  }
}

@media (min-width: 1024px) {
  .legal-docs-hero h1 {
    font-size: var(--fs-h1-desktop);
  }
}

.legal-docs-hero p {
  font-size: var(--fs-body-mobile);
  color: var(--color-text-light);
  margin: 0;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .legal-docs-hero p {
    font-size: var(--fs-body-desktop);
  }
}

.legal-docs-body {
  background-color: var(--color-bg-light);
}

.legal-docs-body h2 {
  font-size: var(--fs-h2-mobile);
  line-height: 1.3;
  color: var(--color-text-dark);
  margin: 0 0 var(--sp-md) 0;
  padding-top: var(--sp-lg);
}

@media (min-width: 768px) {
  .legal-docs-body h2 {
    font-size: var(--fs-h2-tablet);
    margin-bottom: var(--sp-lg);
    padding-top: var(--sp-xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs-body h2 {
    font-size: var(--fs-h2-desktop);
  }
}

.legal-docs-body p {
  font-size: var(--fs-body-mobile);
  line-height: 1.7;
  color: var(--color-text-gray);
  margin: 0 0 var(--sp-md) 0;
}

@media (min-width: 768px) {
  .legal-docs-body p {
    font-size: var(--fs-body-tablet);
    margin-bottom: var(--sp-lg);
  }
}

@media (min-width: 1024px) {
  .legal-docs-body p {
    font-size: var(--fs-body-desktop);
  }
}

.legal-docs-body ul {
  margin: 0 0 var(--sp-md) var(--sp-md);
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .legal-docs-body ul {
    margin-bottom: var(--sp-lg);
  }
}

.legal-docs-body li {
  font-size: var(--fs-body-mobile);
  line-height: 1.7;
  color: var(--color-text-gray);
  margin-bottom: var(--sp-sm);
  padding-left: var(--sp-md);
  position: relative;
}

@media (min-width: 768px) {
  .legal-docs-body li {
    font-size: var(--fs-body-tablet);
    margin-bottom: var(--sp-md);
  }
}

@media (min-width: 1024px) {
  .legal-docs-body li {
    font-size: var(--fs-body-desktop);
  }
}

.legal-docs-body li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-docs-updated {
  font-size: var(--fs-body-mobile);
  color: var(--color-text-gray);
  font-style: italic;
  margin: 0 0 var(--sp-lg) 0;
}

@media (min-width: 768px) {
  .legal-docs-updated {
    font-size: var(--fs-body-tablet);
  }
}

@media (min-width: 1024px) {
  .legal-docs-updated {
    font-size: var(--fs-body-desktop);
  }
}

.legal-docs-contact {
  background-color: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
}

.legal-docs-contact h2 {
  font-size: var(--fs-h2-mobile);
  line-height: 1.3;
  color: var(--color-text-dark);
  margin: 0 0 var(--sp-md) 0;
}

@media (min-width: 768px) {
  .legal-docs-contact h2 {
    font-size: var(--fs-h2-tablet);
    margin-bottom: var(--sp-lg);
  }
}

@media (min-width: 1024px) {
  .legal-docs-contact h2 {
    font-size: var(--fs-h2-desktop);
  }
}

.contact-item {
  margin-bottom: var(--sp-lg);
}

@media (min-width: 768px) {
  .contact-item {
    margin-bottom: var(--sp-xl);
  }
}

.contact-item h3 {
  font-size: var(--fs-h4-mobile);
  line-height: 1.4;
  color: var(--color-primary);
  margin: 0 0 var(--sp-sm) 0;
}

@media (min-width: 768px) {
  .contact-item h3 {
    font-size: var(--fs-h4-tablet);
    margin-bottom: var(--sp-md);
  }
}

@media (min-width: 1024px) {
  .contact-item h3 {
    font-size: var(--fs-h4-desktop);
  }
}

.contact-item p {
  font-size: var(--fs-body-mobile);
  line-height: 1.7;
  color: var(--color-text-gray);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-item p {
    font-size: var(--fs-body-tablet);
  }
}

@media (min-width: 1024px) {
  .contact-item p {
    font-size: var(--fs-body-desktop);
  }
}

/* Thank You Page Styles */
/* ============================================
     THANK YOU PAGE STYLES
     ============================================ */

  .main {
    overflow: hidden;
  }

  /* ============================================
     HERO SECTION
     ============================================ */

  .thank-hero-section {
    background-color: var(--color-primary);
    padding: var(--sp-3xl) 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-hero-section {
      padding: var(--sp-3xl) 0;
    }
  }

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

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-md);
  }

  @media (min-width: 768px) {
    .thank-hero-content {
      gap: var(--sp-lg);
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-content {
      gap: var(--sp-lg);
    }
  }

  .thank-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    animation: scaleInPulse 0.8s ease-out;
  }

  @media (min-width: 768px) {
    .thank-icon-wrapper {
      width: 100px;
      height: 100px;
    }
  }

  @media (min-width: 1024px) {
    .thank-icon-wrapper {
      width: 120px;
      height: 120px;
    }
  }

  .thank-icon-wrapper i {
    font-size: var(--icon-lg);
    color: var(--color-text-light);
  }

  @media (min-width: 768px) {
    .thank-icon-wrapper i {
      font-size: var(--icon-xl);
    }
  }

  @media (min-width: 1024px) {
    .thank-icon-wrapper i {
      font-size: 4.5rem;
    }
  }

  .thank-hero-section h1 {
    font-family: var(--font-display);
    font-size: var(--fs-h1-mobile);
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: var(--fs-h1-tablet);
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: var(--fs-h1-desktop);
    }
  }

  .thank-lead {
    font-family: var(--font-primary);
    font-size: var(--fs-body-mobile);
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    max-width: 500px;
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: var(--fs-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .thank-lead {
      font-size: var(--fs-body-desktop);
    }
  }

  @keyframes scaleInPulse {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    70% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* ============================================
     STEPS SECTION
     ============================================ */

  .thank-steps-section {
    background-color: var(--color-bg-light);
    padding: var(--sp-3xl) 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-steps-section {
      padding: var(--sp-3xl) 0;
    }
  }

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

  .thank-steps-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2xl);
  }

  @media (min-width: 768px) {
    .thank-steps-content {
      gap: var(--sp-3xl);
    }
  }

  @media (min-width: 1024px) {
    .thank-steps-content {
      gap: var(--sp-3xl);
    }
  }

  .thank-steps-section h2 {
    font-family: var(--font-display);
    font-size: var(--fs-h2-mobile);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    text-align: center;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .thank-steps-section h2 {
      font-size: var(--fs-h2-tablet);
    }
  }

  @media (min-width: 1024px) {
    .thank-steps-section h2 {
      font-size: var(--fs-h2-desktop);
    }
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

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

  @media (min-width: 1024px) {
    .steps-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-2xl);
    }
  }

  .step-card {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    padding: var(--sp-lg);
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
  }

  @media (min-width: 768px) {
    .step-card {
      padding: var(--sp-lg);
      gap: var(--sp-md);
    }
  }

  @media (min-width: 1024px) {
    .step-card {
      padding: var(--sp-2xl);
      gap: var(--sp-md);
    }
  }

  .step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
    transform: translateY(-2px);
  }

  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: var(--fs-h3-mobile);
    font-weight: 700;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .step-number {
      width: 56px;
      height: 56px;
      font-size: var(--fs-h3-tablet);
    }
  }

  @media (min-width: 1024px) {
    .step-number {
      width: 64px;
      height: 64px;
      font-size: var(--fs-h3-desktop);
    }
  }

  .step-card h3 {
    font-family: var(--font-display);
    font-size: var(--fs-h4-mobile);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
  }

  @media (min-width: 768px) {
    .step-card h3 {
      font-size: var(--fs-h4-tablet);
    }
  }

  @media (min-width: 1024px) {
    .step-card h3 {
      font-size: var(--fs-h4-desktop);
    }
  }

  .step-card p {
    font-family: var(--font-primary);
    font-size: var(--fs-body-mobile);
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .step-card p {
      font-size: var(--fs-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .step-card p {
      font-size: var(--fs-body-desktop);
    }
  }

  /* ============================================
     INFO BOX
     ============================================ */

  .thank-info-box {
    display: flex;
    flex-direction: row;
    gap: var(--sp-md);
    padding: var(--sp-lg);
    background: linear-gradient(135deg, var(--color-accent-light) 0%, rgba(0, 184, 169, 0.05) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
    align-items: flex-start;
  }

  @media (min-width: 768px) {
    .thank-info-box {
      padding: var(--sp-2xl);
      gap: var(--sp-lg);
    }
  }

  @media (min-width: 1024px) {
    .thank-info-box {
      padding: var(--sp-2xl);
      gap: var(--sp-lg);
    }
  }

  .thank-info-box i {
    font-size: var(--icon-lg);
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .thank-info-box i {
      font-size: var(--icon-xl);
    }
  }

  @media (min-width: 1024px) {
    .thank-info-box i {
      font-size: 2.5rem;
    }
  }

  .info-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
  }

  .thank-info-box h3 {
    font-family: var(--font-display);
    font-size: var(--fs-h4-mobile);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-info-box h3 {
      font-size: var(--fs-h4-tablet);
    }
  }

  @media (min-width: 1024px) {
    .thank-info-box h3 {
      font-size: var(--fs-h4-desktop);
    }
  }

  .thank-info-box p {
    font-family: var(--font-primary);
    font-size: var(--fs-body-mobile);
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .thank-info-box p {
      font-size: var(--fs-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .thank-info-box p {
      font-size: var(--fs-body-desktop);
    }
  }

  /* ============================================
     ACTIONS
     ============================================ */

  .thank-actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
    align-items: center;
    margin-top: var(--sp-md);
  }

  @media (min-width: 768px) {
    .thank-actions {
      margin-top: var(--sp-lg);
    }
  }

  @media (min-width: 1024px) {
    .thank-actions {
      margin-top: var(--sp-lg);
    }
  }

  .thank-actions .btn {
    padding: var(--sp-sm) var(--sp-lg);
    font-size: var(--fs-body-mobile);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-weight: 600;
    border: none;
    cursor: pointer;
  }

  @media (min-width: 768px) {
    .thank-actions .btn {
      padding: var(--sp-md) var(--sp-2xl);
      font-size: var(--fs-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .thank-actions .btn {
      padding: var(--sp-md) var(--sp-2xl);
      font-size: var(--fs-body-desktop);
    }
  }

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

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

  .btn-primary:active {
    transform: translateY(0);
  }

  /* ============================================
     CONTACT SECTION
     ============================================ */

  .thank-contact-section {
    background-color: var(--color-bg-white);
    padding: var(--sp-3xl) 0;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
  }

  @media (min-width: 768px) {
    .thank-contact-section {
      padding: var(--sp-3xl) 0;
    }
  }

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

  .thank-contact-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2xl);
    text-align: center;
  }

  @media (min-width: 768px) {
    .thank-contact-content {
      gap: var(--sp-3xl);
    }
  }

  @media (min-width: 1024px) {
    .thank-contact-content {
      gap: var(--sp-3xl);
    }
  }

  .thank-contact-section h2 {
    font-family: var(--font-display);
    font-size: var(--fs-h2-mobile);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .thank-contact-section h2 {
      font-size: var(--fs-h2-tablet);
    }
  }

  @media (min-width: 1024px) {
    .thank-contact-section h2 {
      font-size: var(--fs-h2-desktop);
    }
  }

  .contact-intro {
    font-family: var(--font-primary);
    font-size: var(--fs-body-mobile);
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .contact-intro {
      font-size: var(--fs-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .contact-intro {
      font-size: var(--fs-body-desktop);
    }
  }

  .contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  @media (min-width: 768px) {
    .contact-methods {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-lg);
    }
  }

  @media (min-width: 1024px) {
    .contact-methods {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-2xl);
    }
  }

  .contact-method {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    padding: var(--sp-lg);
    align-items: center;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .contact-method {
      padding: var(--sp-lg);
      gap: var(--sp-md);
    }
  }

  @media (min-width: 1024px) {
    .contact-method {
      padding: var(--sp-2xl);
      gap: var(--sp-md);
    }
  }

  .contact-method:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
  }

  .contact-method i {
    font-size: var(--icon-lg);
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .contact-method i {
      font-size: var(--icon-xl);
    }
  }

  @media (min-width: 1024px) {
    .contact-method i {
      font-size: 2.5rem;
    }
  }

  .contact-method h4 {
    font-family: var(--font-display);
    font-size: var(--fs-h4-mobile);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
  }

  @media (min-width: 768px) {
    .contact-method h4 {
      font-size: var(--fs-h4-tablet);
    }
  }

  @media (min-width: 1024px) {
    .contact-method h4 {
      font-size: var(--fs-h4-desktop);
    }
  }

  .contact-method p {
    font-family: var(--font-primary);
    font-size: var(--fs-body-mobile);
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .contact-method p {
      font-size: var(--fs-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .contact-method p {
      font-size: var(--fs-body-desktop);
    }
  }

  /* ============================================
     ACCESSIBILITY & FOCUS STATES
     ============================================ */

  a:focus-visible,
  .btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

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

    .thank-icon-wrapper {
      animation: none;
    }
  }

/* 404 Page Styles */
/* ============================================================================
   ERROR PAGE STYLES
   ========================================================================= */

/* Hero Section */
.error-hero-section {
  background-color: var(--color-bg-dark);
  overflow: hidden;
  padding: var(--sp-3xl) 0;
}

@media (min-width: 768px) {
  .error-hero-section {
    padding: var(--sp-3xl) 0 var(--sp-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .error-hero-section {
    padding: 5rem 0 4rem 0;
  }
}

.error-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .error-hero-content {
    flex-direction: row;
    gap: var(--sp-2xl);
    align-items: center;
    justify-content: space-between;
  }
}

/* Illustration */
.error-illustration {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .error-illustration {
    width: 250px;
    height: 250px;
  }
}

@media (min-width: 1024px) {
  .error-illustration {
    width: 300px;
    height: 300px;
  }
}

.tech-grid {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(0, 104, 204, 0.15));
  animation: float-animation 6s ease-in-out infinite;
}

@keyframes float-animation {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.error-code-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.error-code {
  font-size: 4.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  font-family: var(--font-display);
  text-shadow: 0 0 30px rgba(0, 104, 204, 0.2);
}

@media (min-width: 768px) {
  .error-code {
    font-size: 5rem;
  }
}

@media (min-width: 1024px) {
  .error-code {
    font-size: 6rem;
  }
}

/* Error Content */
.error-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .error-content {
    text-align: left;
  }
}

.error-title {
  font-size: var(--fs-h2-mobile);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--sp-md);
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .error-title {
    font-size: var(--fs-h2-tablet);
  }
}

@media (min-width: 1024px) {
  .error-title {
    font-size: var(--fs-h2-desktop);
  }
}

.error-description {
  font-size: var(--fs-body-mobile);
  color: #b0b9d1;
  margin-bottom: var(--sp-lg);
  line-height: 1.6;
  max-width: 500px;
}

@media (min-width: 768px) {
  .error-description {
    font-size: var(--fs-body-tablet);
  }
}

@media (min-width: 1024px) {
  .error-description {
    font-size: var(--fs-body-desktop);
  }
}

/* Error Suggestions */
.error-suggestions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

@media (min-width: 768px) {
  .error-suggestions {
    flex-direction: row;
    gap: var(--sp-lg);
  }
}

.suggestion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
}

@media (min-width: 768px) {
  .suggestion-item {
    align-items: flex-start;
    flex: 1;
  }
}

.suggestion-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.suggestion-icon svg {
  width: 24px;
  height: 24px;
}

.suggestion-item p {
  font-size: 0.875rem;
  color: #b0b9d1;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .suggestion-item p {
    text-align: left;
  }
}

/* Button Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: var(--fs-body-mobile);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

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

@media (min-width: 1024px) {
  .btn {
    font-size: var(--fs-body-desktop);
  }
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: 0 8px 20px rgba(0, 104, 204, 0.3);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.5rem;
}

@media (min-width: 768px) {
  .btn-large {
    padding: 1.25rem 3rem;
  }
}

/* Solutions Section */
.error-solutions-section {
  background-color: var(--color-bg-light);
  overflow: hidden;
  padding: var(--sp-3xl) 0;
}

@media (min-width: 768px) {
  .error-solutions-section {
    padding: var(--sp-2xl) 0 var(--sp-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .error-solutions-section {
    padding: 4rem 0 5rem 0;
  }
}

.error-solutions-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2xl);
}

.solutions-title {
  font-size: var(--fs-h2-mobile);
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .solutions-title {
    font-size: var(--fs-h2-tablet);
  }
}

@media (min-width: 1024px) {
  .solutions-title {
    font-size: var(--fs-h2-desktop);
  }
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}

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

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-2xl);
  }
}

/* Solution Cards */
.solution-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  padding: var(--sp-lg);
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .solution-card {
    padding: var(--sp-xl);
    gap: var(--sp-lg);
  }
}

@media (min-width: 1024px) {
  .solution-card {
    padding: var(--sp-xl) var(--sp-lg);
  }
}

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

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

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

.card-icon svg {
  width: 24px;
  height: 24px;
}

.solution-card:hover .card-icon {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  transform: rotate(10deg) scale(1.1);
}

.solution-card h3 {
  font-size: var(--fs-h4-mobile);
  font-weight: 700;
  color: var(--color-text-dark);
}

@media (min-width: 768px) {
  .solution-card h3 {
    font-size: var(--fs-h4-tablet);
  }
}

@media (min-width: 1024px) {
  .solution-card h3 {
    font-size: var(--fs-h4-desktop);
  }
}

.solution-card p {
  font-size: var(--fs-body-mobile);
  color: var(--color-text-gray);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .solution-card p {
    font-size: var(--fs-body-tablet);
  }
}

@media (min-width: 1024px) {
  .solution-card p {
    font-size: var(--fs-body-desktop);
  }
}

/* Container Styles */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

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

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .tech-grid {
    animation: none;
  }
  
  .solution-card,
  .btn {
    transition: none;
  }
}

/* Print Styles */
@media print {
  .error-hero-section,
  .error-solutions-section {
    page-break-inside: avoid;
  }
}