/* Bihar Service - Professional Polish Design Theme */
:root {
  /* Brand Accent: Vibrant Saffron / Orange */
  --primary: #ea580c;
  --primary-hover: #c2410c;
  --primary-dark: #9a3412;
  --primary-light: #fff7ed;
  --primary-light-hover: #ffedd5;
  --primary-border: #fdba74;
  --primary-text: #9a3412;
  
  /* Verified Government Action Green */
  --gov-green: #16a34a;
  --gov-green-hover: #15803d;
  --gov-green-bg: #f0fdf4;
  --gov-green-border: #86efac;
  --gov-green-text: #166534;
  
  /* Slate Neutral Palette */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  
  /* Category Accent Colors */
  --cat-orange-bg: #ffedd5;
  --cat-orange-text: #ea580c;
  --cat-blue-bg: #dbeafe;
  --cat-blue-text: #2563eb;
  --cat-green-bg: #dcfce7;
  --cat-green-text: #16a34a;
  --cat-purple-bg: #f3e8ff;
  --cat-purple-text: #9333ea;
  --cat-amber-bg: #fef3c7;
  --cat-amber-text: #b45309;
  --cat-rose-bg: #ffe4e6;
  --cat-rose-text: #e11d48;
  
  /* Disclaimer Amber */
  --amber-bg: #fffbeb;
  --amber-border: #fde68a;
  --amber-text: #92400e;
  
  /* Radii & Shadows */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 22px;
  
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background-color: var(--slate-50);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

/* Accessibility Focus */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 640px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Top Disclaimer Banner */
.disclaimer-banner {
  background-color: var(--amber-bg);
  border-bottom: 1px solid var(--amber-border);
  color: var(--amber-text);
  font-size: 12px;
  padding: 8px 16px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.disclaimer-banner strong {
  font-weight: 700;
}

/* Header & Navigation */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(12, 35, 64, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(12, 35, 64, 0.22);
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
  letter-spacing: -0.02em;
}

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

.brand-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-tagline-small {
  font-size: 10px;
  color: var(--slate-500);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Home Page Hero Emblem Badge (Only Image) */
.hero-brand-emblem-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  text-decoration: none;
}

.hero-brand-emblem-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(12, 35, 64, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-brand-emblem-img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(12, 35, 64, 0.25);
}

.footer-brand-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-simple .footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* Navigation Links */
.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

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

.nav-link.active {
  color: var(--primary);
  background-color: var(--primary-light);
  font-weight: 700;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.15s ease;
}

.mobile-menu-btn:hover {
  background: var(--slate-100);
  border-color: var(--slate-300);
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  z-index: 50;
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mobile-drawer.open {
  display: block;
  opacity: 1;
}

.drawer-content {
  width: 85%;
  max-width: 320px;
  height: 100%;
  background-color: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 16px;
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-100);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--slate-700);
  font-weight: 700;
  cursor: pointer;
}

.drawer-close-btn:hover {
  background: var(--slate-200);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-700);
  transition: all 0.15s ease;
}

.drawer-link:hover, .drawer-link.active {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
  border-bottom: 1px solid var(--slate-200);
  padding: 36px 0 44px;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-section {
    padding: 52px 0 58px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary-text);
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 40px;
  }
}

.hero-subtitle {
  font-size: 16px;
  color: var(--slate-600);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 18px;
  }
}

/* Smart Search Box */
.search-container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.search-form {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
  overflow: hidden;
  padding: 4px;
}

.search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12), var(--shadow-lg);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
  width: 22px;
  height: 22px;
}

.search-input {
  width: 100%;
  padding: 12px 14px 12px 48px;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-800);
  background: transparent;
  min-height: 52px;
}

.search-input::placeholder {
  color: var(--slate-400);
  font-size: 15px;
}

.search-clear-btn {
  background: none;
  border: none;
  color: var(--slate-400);
  padding: 0 12px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.search-clear-btn.visible {
  display: flex;
}

.search-submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: var(--radius-md);
  transition: background 0.15s ease, transform 0.1s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-submit-btn:hover {
  background: var(--primary-hover);
}

.search-submit-btn:active {
  transform: scale(0.98);
}

/* Search Dropdown / Live Results */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 30;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  text-align: left;
}

.search-results-dropdown.active {
  display: block;
}

.search-dropdown-header {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}

.search-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--slate-100);
  text-decoration: none;
  color: var(--slate-800);
  transition: background 0.15s ease;
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover, .search-item:focus {
  background: var(--primary-light);
}

.search-item-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.search-item-desc {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.3;
}

.search-item-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  background: var(--slate-100);
  color: var(--slate-600);
  white-space: nowrap;
  margin-left: 12px;
}

.search-item:hover .search-item-tag {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary-border);
}

.search-quick-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.quick-tag-label {
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 600;
}

.quick-tag {
  background: var(--white);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.quick-tag:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-border);
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: 36px 0;
}

@media (min-width: 640px) {
  .section {
    padding: 48px 0;
  }
}

.section-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-header.with-action {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 26px;
  }
}

.section-subtitle {
  font-size: 14px;
  color: var(--slate-500);
}

.section-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.section-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Category Filter Chips */
.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-chip {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.category-chip:hover {
  background: var(--slate-100);
  color: var(--slate-900);
  border-color: var(--slate-300);
}

.category-chip.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

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

@media (min-width: 1200px) {
  .services-grid.services-5col {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  min-height: 145px;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.service-card:hover .service-card-icon {
  transform: scale(1.05);
}

/* Category-specific icon color themes */
.service-card[data-category="certificates"] .service-card-icon {
  background: var(--cat-orange-bg);
  color: var(--cat-orange-text);
}

.service-card[data-category="driving"] .service-card-icon {
  background: var(--cat-blue-bg);
  color: var(--cat-blue-text);
}

.service-card[data-category="land"] .service-card-icon {
  background: var(--cat-green-bg);
  color: var(--cat-green-text);
}

.service-card[data-category="education"] .service-card-icon {
  background: var(--cat-purple-bg);
  color: var(--cat-purple-text);
}

.service-card[data-category="jobs"] .service-card-icon {
  background: var(--cat-amber-bg);
  color: var(--cat-amber-text);
}

.service-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
  margin-bottom: 4px;
}

.service-card-desc {
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.45;
  margin-bottom: 10px;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  padding-top: 4px;
}

.service-card-arrow {
  font-size: 14px;
  transition: transform 0.15s ease;
}

.service-card:hover .service-card-arrow {
  transform: translateX(4px);
}

/* Popular Tasks Grid */
.tasks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .tasks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

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

.task-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.task-card:hover {
  background: var(--white);
  border-color: var(--primary-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(234, 88, 12, 0.05);
}

.task-card-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
  min-width: 0;
}

.task-dot {
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--primary-light);
}

.task-card:hover .task-dot {
  background: var(--primary-hover);
  transform: scale(1.15);
}

.task-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
}

.task-card-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.task-card:hover .task-card-btn {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
}

/* Recently Updated Grid */
.recent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

.recent-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

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

.recent-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.recent-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 6px;
  line-height: 1.3;
}

.recent-desc {
  font-size: 14px;
  color: var(--slate-600);
  margin-bottom: 16px;
  line-height: 1.45;
}

.recent-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-700);
  transition: all 0.15s ease;
}

.recent-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
}

/* How It Works Utility Banner */
.utility-workflow {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  margin: 28px 0;
  box-shadow: var(--shadow-md);
  border: 1px solid #334155;
}

.utility-workflow-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.01em;
}

.utility-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .utility-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.workflow-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.15s ease;
}

.workflow-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.workflow-num {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(234, 88, 12, 0.4);
}

.workflow-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.workflow-text {
  font-size: 13px;
  color: var(--slate-300);
  line-height: 1.45;
}

/* Page Layouts */
.page-container {
  padding: 24px 0 48px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--slate-600);
  font-weight: 500;
  transition: color 0.15s ease;
}

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

.breadcrumb-sep {
  color: var(--slate-400);
}

.breadcrumb-current {
  color: var(--slate-900);
  font-weight: 700;
}

/* Guide Header */
.guide-header {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 26px 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .guide-header {
    padding: 34px 30px;
  }
}

.guide-h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .guide-h1 {
    font-size: 32px;
  }
}

.guide-short-answer {
  font-size: 16px;
  color: var(--slate-700);
  line-height: 1.6;
  background: var(--slate-50);
  border-left: 4px solid var(--primary);
  padding: 16px 18px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 18px;
}

/* Official Government Link Action Box */
.official-box {
  background: var(--gov-green-bg);
  border: 2px solid var(--gov-green-border);
  border-radius: var(--radius-xl);
  padding: 22px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .official-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 26px 30px;
  }
}

.official-box-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.official-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gov-green-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.official-box-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--slate-900);
}

.official-box-desc {
  font-size: 13px;
  color: var(--slate-600);
}

.btn-official {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gov-green);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.25);
  transition: all 0.15s ease;
  white-space: nowrap;
  min-height: 48px;
}

.btn-official:hover {
  background: var(--gov-green-hover);
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.35);
  transform: translateY(-1px);
}

/* Service Actions Hub Cards */
.action-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0 28px;
}

@media (min-width: 640px) {
  .action-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .action-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.action-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #f97316);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.action-card:hover {
  border-color: var(--primary-border);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(234, 88, 12, 0.04);
}

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

.action-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.action-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.action-card:hover .action-card-icon {
  transform: scale(1.08);
}

.action-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 9999px;
  background: var(--slate-100);
  color: var(--slate-600);
}

.action-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 6px;
}

.action-card-desc {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.45;
  margin-bottom: 16px;
  flex-grow: 1;
}

.action-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.15s ease;
  width: 100%;
}

.action-card:hover .action-card-link {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25);
}

/* Guide Content Blocks */
.content-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 26px 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .content-card {
    padding: 30px 30px;
  }
}

.content-h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(234, 88, 12, 0.3);
}

.step-body {
  flex-grow: 1;
}

.step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.55;
}

/* Document Checklist */
.doc-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--slate-700);
}

.doc-icon {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Info Grid (Fees, Eligibility, Time) */
.info-pills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .info-pills-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.info-pill-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}

.info-pill-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.info-pill-val {
  font-size: 17px;
  font-weight: 800;
  color: var(--slate-900);
}

/* Common Problems Alert */
.problems-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-top: 18px;
}

.problems-title {
  font-size: 15px;
  font-weight: 800;
  color: #991b1b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.problems-list {
  padding-left: 20px;
  font-size: 14px;
  color: #7f1d1d;
  line-height: 1.55;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-800);
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}

.faq-question:hover {
  background: var(--slate-50);
}

.faq-icon {
  font-size: 18px;
  color: var(--slate-400);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
  display: none;
}

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

/* Related Tasks Grid & Cards */
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

@media (min-width: 640px) {
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

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

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

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

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

.related-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--slate-800);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.related-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #f97316);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.related-card:hover {
  border-color: var(--primary-border);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(234, 88, 12, 0.05);
}

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

.related-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.related-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.related-card:hover .related-card-icon {
  transform: scale(1.08);
  background: var(--primary);
  color: var(--white);
}

.related-card-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 9999px;
  background: var(--slate-100);
  color: var(--slate-600);
}

.related-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.35;
  margin-bottom: 6px;
  display: block;
}

.related-card-desc {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.45;
  margin-bottom: 14px;
  flex-grow: 1;
  display: block;
}

.related-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 7px 12px;
  border-radius: var(--radius-md);
  margin-top: auto;
  transition: all 0.15s ease;
}

.related-card-link .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.related-card:hover .related-card-link {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.related-card:hover .related-card-link .arrow {
  transform: translateX(3px);
}

/* Related Tasks Pills */
.related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-pill {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-sm);
}

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

/* Task & Guide Page Enhanced Architecture Classes */
.last-updated-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 13px;
}

.last-updated-date {
  color: var(--slate-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.verified-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gov-green-bg);
  color: var(--gov-green-text);
  border: 1px solid var(--gov-green-border);
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
}

/* Quick Information Grid */
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

@media (min-width: 640px) {
  .quick-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .quick-info-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.quick-info-cell {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-info-cell-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-info-cell-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
}

/* Concept / Terms Explanation Box */
.concept-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-top: 14px;
}

.concept-term-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.concept-term-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.concept-term-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark);
}

.concept-term-desc {
  font-size: 14px;
  color: var(--slate-700);
  line-height: 1.5;
}

/* Warnings / Mistakes Box */
.warning-box {
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-top: 18px;
}

.warning-box-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--amber-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.warning-box-list {
  padding-left: 20px;
  font-size: 14px;
  color: #78350f;
  line-height: 1.55;
}

/* Related Search Intent Box */
.search-intent-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-top: 24px;
}

.search-intent-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--slate-700);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-intent-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-intent-pill {
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-600);
  text-decoration: none;
  transition: all 0.15s ease;
}

.search-intent-pill:hover {
  background: var(--primary-light);
  border-color: var(--primary-border);
  color: var(--primary-dark);
}

/* Step Inline Action Button */
.step-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gov-green-bg);
  border: 1px solid var(--gov-green-border);
  color: var(--gov-green-text);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.15s ease;
}

.step-action-btn:hover {
  background: var(--gov-green);
  color: var(--white);
}

/* Independent Platform Notice Box */
.independent-platform-card {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.5;
}

.independent-platform-card strong {
  color: var(--slate-800);
}

/* Static Article Content */
.article-body {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.7;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--slate-900);
  margin: 24px 0 12px;
}

.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-800);
  margin: 20px 0 8px;
}

.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-body li {
  margin-bottom: 6px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-700);
}

.form-input, .form-textarea {
  padding: 12px 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--slate-800);
  background: var(--white);
  outline: none;
  transition: all 0.15s ease;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s ease;
  min-height: 48px;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
}

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

/* Footer - Professional Polish 3-Column / 4-Column Layout */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 48px 0 24px;
  margin-top: auto;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 36px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.footer-tagline {
  font-size: 14px;
  color: var(--primary-border);
  font-weight: 700;
}

.footer-desc {
  font-size: 13px;
  color: var(--slate-400);
  line-height: 1.5;
}

.footer-heading {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: var(--slate-400);
  transition: color 0.15s ease;
}

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

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--slate-300);
  line-height: 1.5;
}

.footer-disclaimer-box strong {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--slate-400);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

