:root {
  /* Colors */
  --primary: #4F46E5;
  --primary-hover: #4338CA;
  --primary-light: #EEF2FF;
  --secondary: #06B6D4;
  --secondary-hover: #0891B2;
  --secondary-light: #ECFEFF;
  
  --bg-body: #FAFBFC;
  --bg-card: #FFFFFF;
  --bg-dark-hero: #090D1A;
  --bg-dark-footer: #0A0F1D;
  
  --text-main: #334155;
  --text-heading: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --border-color: #E2E8F0;
  --border-color-dark: #1E293B;
  --focus-ring: 0 0 0 4px rgba(79, 70, 229, 0.12);
  
  /* Fonts */
  --primary-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --grid-width: 1160px;
  --grid-gutter: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 8px 24px rgba(79, 70, 229, 0.35);
}

/* ─── Global Reset & Styling ─────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

body, html {
  height: 100%;
  min-height: 100%;
}

html {
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

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

/* ─── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 48px 0 24px;
  font-weight: 800;
}

h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin: 40px 0 16px;
  font-weight: 800;
  position: relative;
}

h3 {
  font-size: clamp(19px, 2vw, 22px);
  margin: 28px 0 12px;
  font-weight: 700;
}

h4 {
  font-size: 18px;
  margin: 24px 0 10px;
}

p {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-main);
}

strong {
  font-weight: 600;
  color: var(--text-heading);
}

em {
  font-style: italic;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  line-height: 1.2;
  outline: none;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Bullet Lists in Content */
.ytvp4a ul,
.t17m8u ul {
  list-style-type: none;
  margin: 24px 0;
  padding: 0;
}

.ytvp4a ul li,
.t17m8u ul li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-main);
}

.ytvp4a ul li::before,
.t17m8u ul li::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234F46E5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ─── Grid System & Layout ───────────────────────────────────────────────────── */
.e5ieuo {
  max-width: calc(var(--grid-width) + var(--grid-gutter) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

.e5ieuo.sm {
  max-width: calc(840px + var(--grid-gutter) * 2);
}

.xhoe7o {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--grid-gutter) * -1);
}

.oiq1t1 {
  width: fit-content;
  padding: 0 var(--grid-gutter);
}

.lynrx7 {
  width: 100%;
}

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

.oun4rf {
  flex: 1;
}

.jvhj7z {
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .i2bv45 {
    width: 25%;
  }

  .aaazcz {
    width: 41.6666%;
  }

  .y22php {
    width: 50%;
  }

  .ba6oc3 {
    width: 58.3333%;
  }

  .np8fmj {
    width: 66.6666%;
  }
}

@media (min-width: 768px) {
  .vgii9p {
    width: 25%;
  }
}

/* Utilities */
.yvz7eh { display: flex; }
.uojj5m { align-items: center; }
.wg5jyb { justify-content: space-between; }
.uks3hk { justify-content: center; }
.kc6nqc { justify-content: flex-start; }

/* ─── Inputs & Buttons ───────────────────────────────────────────────────────── */
input,
select {
  width: 100%;
  height: 56px;
  position: relative;
  display: block;
  padding: 14px 18px;
  color: var(--text-heading);
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 400;
  background-color: var(--bg-card);
  border-radius: 12px;
  outline: none;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

select {
  padding-right: 48px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2364748B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  background-size: 20px;
  cursor: pointer;
}

::-webkit-input-placeholder { color: var(--text-light); }
::-moz-placeholder { color: var(--text-light); }
:-ms-input-placeholder { color: var(--text-light); }

input:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: var(--focus-ring);
  background-color: var(--bg-card);
}

.ram95c {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 56px;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--text-white);
  outline: none;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 18px;
  border-radius: 12px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-glow);
}

.ram95c:hover,
.ram95c:active {
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.45);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text-white);
}

/* ─── Header ─────────────────────────────────────────────────────────────────── */
.dcobhc {
  height: 80px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.dcobhc .e5ieuo {
  height: 100%;
  display: flex;
  align-items: center;
}

.dcobhc .xhoe7o {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
}

.su4oo9 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-heading);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.su4oo9 .tlq0fl {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.su4oo9:hover {
  opacity: 0.85;
  text-decoration: none;
}

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

.bfbydb {
  margin-right: 32px;
}

.bfbydb ul {
  display: flex;
  align-items: center;
  margin: 0;
  list-style: none;
}

.bfbydb ul li {
  margin-right: 28px;
  padding: 0;
}

.bfbydb ul li::before {
  display: none;
}

.bfbydb ul li:last-child {
  margin-right: 0;
}

.bfbydb ul li a {
  display: block;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  text-decoration: none;
  position: relative;
}

.bfbydb ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.bfbydb ul li a:hover {
  color: var(--text-heading);
  text-decoration: none;
}

.bfbydb ul li a:hover::after,
.bfbydb ul li.cxdu1v a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bfbydb ul li.cxdu1v a {
  color: var(--primary);
  font-weight: 600;
}

.znvz7d {
  display: none;
}

.ysg2nk {
  flex-shrink: 0;
}

.ysg2nk .ram95c {
  height: 44px;
  font-size: 14px;
  padding: 0 20px;
  border-radius: 10px;
  width: auto;
  box-shadow: none;
}

.ysg2nk .ram95c:hover {
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.hvqpnu {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  background-color: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(4px);
}

.hvqpnu.is-active {
  opacity: 1;
  visibility: visible;
}

/* ─── Hero Section ───────────────────────────────────────────────────────────── */
.cr6uyv {
  position: relative;
  background-color: var(--bg-dark-hero);
  color: var(--text-white);
  padding: 96px 0 140px;
  overflow: hidden;
}

/* Mesh Gradient Backdrop */
.cr6uyv::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.ppwckl {
  text-align: center;
  position: relative;
  z-index: 10;
}

.kskd6t {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.15;
  color: var(--text-white);
  font-weight: 800;
  margin: 0 auto 20px;
  max-width: 820px;
  letter-spacing: -0.03em;
}

.eainan {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-light);
}

.fs1dqh {
  position: relative;
  z-index: 20;
  margin-top: -80px; /* Pulls form overlapping onto hero */
}

/* Redesigned Floating Form Card */
.vap3bp {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(226, 232, 240, 0.8);
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.ecfwmx {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 16px;
  align-items: center;
}

.vap3bp input,
.vap3bp select,
.vap3bp .ram95c {
  height: 56px;
  border-radius: 12px;
}

.vap3bp input,
.vap3bp select {
  border-color: #E2E8F0;
  background-color: #ffffff;
}

.vap3bp .ram95c {
  font-size: 16px;
}

.spraf8 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  color: #059669;
  font-size: 13px;
  font-weight: 500;
}

.spraf8 svg {
  flex-shrink: 0;
}

.y9d8wd {
  margin: 16px 0 0 0;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: var(--text-light);
}

.y9d8wd a {
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: underline;
}

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

/* ─── Intro & Article Section ────────────────────────────────────────────────── */
.spkl0g,
.fr2rw3 {
  padding: 80px 0 60px;
}

.hyse4t {
  margin: 0 0 28px;
  font-size: clamp(32px, 4vw, 40px);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 800;
}



/* ─── States We Serve ────────────────────────────────────────────────────────── */
.fsiu8w {
  padding: 40px 0 80px;
}

.fsiu8w h2 {
  margin-bottom: 24px;
}

/* Beautiful Grid for States/Counties/Cities list */
.ktg5pi {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}

.ktg5pi li {
  margin: 0;
  padding: 0;
}

.ktg5pi li::before {
  display: none; /* Disable standard checkmark lists */
}

.ktg5pi li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition);
}

.ktg5pi li a::after {
  content: "→";
  font-size: 14px;
  color: var(--text-light);
  transition: var(--transition);
}

.ktg5pi li a:hover {
  background: var(--primary-light);
  border-color: rgba(79, 70, 229, 0.3);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.04);
}

.ktg5pi li a:hover::after {
  color: var(--primary);
  transform: translateX(3px);
}

/* ─── Map embed ─────────────────────────────────────────────────────────────── */
.ld9pii {
  margin: 24px 0 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  content-visibility: auto;
  contain-intrinsic-size: auto 450px;
}

.ld9pii iframe {
  display: block;
}

/* ─── Tables (Businesses & Legal) ────────────────────────────────────────────── */
.r72mm9 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 40px;
  font-size: 15px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.r72mm9 th {
  text-align: left;
  padding: 16px 20px;
  background: var(--primary-light);
  border-bottom: 2px solid rgba(79, 70, 229, 0.15);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.r72mm9 td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  background: var(--bg-card);
  color: var(--text-main);
}

.r72mm9 tr:last-child td {
  border-bottom: none;
}

.r72mm9 tr:hover td {
  background: #FAFBFD;
}

.u7ot9t {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #FEF3C7;
  color: #D97706;
  padding: 4px 10px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
}

/* Legal tables */
.oepa3c {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 32px;
  font-size: 15px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.oepa3c td,
.oepa3c th {
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 20px;
  vertical-align: top;
}

.oepa3c td:last-child,
.oepa3c th:last-child {
  border-right: none;
}

.oepa3c tr:last-child td {
  border-bottom: none;
}

.oepa3c tr:first-child td,
.oepa3c tr:first-child th {
  background-color: var(--primary-light);
  font-weight: 700;
  color: var(--primary);
}

.oepa3c p {
  margin: 0 0 8px;
}

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

.oepa3c ul {
  margin: 8px 0 0;
  padding-left: 16px;
}

.oepa3c ul li {
  margin-bottom: 6px;
}

/* ─── Cities We Serve Page ───────────────────────────────────────────────────── */
.wc9045 {
  padding: 48px 0 80px;
}

.sasnsd {
  margin-bottom: 24px;
}

.qq84yv {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.hat9lk {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.hat9lk:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.2);
}

.hww0rb {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-heading);
}

.hww0rb::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
  margin-left: 12px;
}

.hat9lk[open] .hww0rb::after {
  transform: rotate(45deg);
}

.fc3rz6 {
  padding: 12px 0 16px;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--border-color);
  background: #FCFDFE;
}

.fc3rz6 li a {
  display: block;
  padding: 8px 20px;
  font-size: 15px;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

.fc3rz6 li a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}

/* ─── Contact Page ───────────────────────────────────────────────────────────── */
.mi9lit {
  margin-bottom: 28px;
  font-size: 16px;
}

.xhdi8t {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-card);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.rd0aa4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.u92zjz {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}

.eti4gl {
  width: 100%;
  height: 52px;
}

.ej85jt {
  resize: vertical;
  min-height: 140px;
  height: auto;
}

.ujm2is {
  align-self: flex-start;
  margin-top: 8px;
}

/* ─── FAQ Page ───────────────────────────────────────────────────────────────── */
.yyua41 {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.yyua41:hover {
  border-color: rgba(79, 70, 229, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.kd3sga {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-heading);
}

.noj0tk p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

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

.noj0tk ul {
  margin: 12px 0;
}

.noj0tk ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

/* ─── Footer Section ─────────────────────────────────────────────────────────── */
.dc7v6l {
  padding-top: 80px;
  background-color: var(--bg-dark-footer);
  color: var(--text-white);
  border-top: 1px solid var(--border-color-dark);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.zttsmb {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.zttsmb .tlq0fl {
  width: 30px;
  height: 30px;
}

.zttsmb:hover {
  opacity: 0.85;
  text-decoration: none;
}

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

.ofvvc7 {
  display: flex;
  align-items: center;
  margin: 0 0 40px 0;
  list-style: none;
}

.ofvvc7 li {
  margin-right: 12px;
  padding: 0;
}

.ofvvc7 li::before {
  display: none;
}

.ofvvc7 li a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: var(--transition);
}

.ofvvc7 li a img {
  opacity: 0.8;
  transition: var(--transition);
}

.ofvvc7 li a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.ofvvc7 li a:hover img {
  opacity: 1;
}

.d18jr9 {
  margin-top: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.oxvyiq {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}

.suly66 {
  width: 100%;
}

.bi61wk {
  margin: 0;
  list-style: none;
}

.bi61wk li {
  margin-bottom: 12px;
  padding: 0;
}

.bi61wk li::before {
  display: none;
}

.bi61wk li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  text-decoration: none;
}

.bi61wk li a:hover {
  color: var(--text-white);
  padding-left: 2px;
}

.arst6e.uwf51s .bi61wk {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.arst6e.uwf51s .bi61wk li {
  margin-bottom: 0;
}

.sf5w57 {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.y041zf {
  margin-bottom: 30px;
}

.y041zf p {
  color: #94A3B8;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: justify;
}

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

.fkg404 {
  font-size: 13px;
  font-weight: 700;
  color: #CBD5E1;
  margin-bottom: 4px;
  display: block;
}

.gw3cul {
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  margin-top: 32px;
}

.gw3cul p {
  margin-bottom: 0;
  font-size: 13px;
  color: #64748B;
}

/* ─── Responsive Adjustments ─────────────────────────────────────────────────── */
@media (max-width: 1025px) {
  .dcobhc {
    background-color: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .au97om {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
    z-index: 120;
    width: 44px;
    height: 44px;
  }
  
  .nc1aai {
    width: 24px;
    height: 16px;
    position: relative;
    display: inline-block;
  }
  
  .nqle3e,
  .nqle3e::before,
  .nqle3e::after {
    width: 24px;
    height: 2px;
    background-color: var(--text-heading);
    border-radius: 4px;
    position: absolute;
    transition: transform 0.15s ease, background-color 0.15s ease;
  }
  
  .nqle3e {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .nqle3e::before {
    content: "";
    top: -6px;
  }
  
  .nqle3e::after {
    content: "";
    bottom: -6px;
  }
  
  /* Active Hamburger State */
  .au97om.is-active .nqle3e {
    transform: rotate(45deg);
  }
  
  .au97om.is-active .nqle3e::before {
    transform: rotate(-90deg) translate(-6px, 0);
    opacity: 0;
  }
  
  .au97om.is-active .nqle3e::after {
    transform: rotate(-90deg) translate(6px, 0);
  }

  .ypihuw {
    padding: 32px 24px;
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    height: calc(100% - 80px);
    width: 100%;
    z-index: 99;
    background-color: #ffffff !important;
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.05);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .ypihuw.is-active {
    transform: translateX(0);
  }

  .bfbydb {
    margin-right: 0;
    width: 100%;
    margin-bottom: 24px;
  }

  .bfbydb ul {
    display: block;
  }

  .bfbydb ul li {
    margin-right: 0;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .bfbydb ul li:last-child {
    border-bottom: none;
  }

  .bfbydb ul li a {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
  }

  .bfbydb ul li a::after {
    display: none;
  }

  .ysg2nk {
    display: none !important;
  }

  .znvz7d {
    display: block;
    width: 100%;
    margin-top: 24px;
  }
  
  .znvz7d .ram95c {
    width: 100%;
    height: 48px;
  }
}

@media (max-width: 992px) {
  .dc7v6l {
    padding-top: 60px;
  }

  .ulbpxb {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
  }

  .zttsmb {
    margin-bottom: 0;
  }

  .ofvvc7 {
    margin-bottom: 0;
  }

  .cr6uyv {
    padding: 80px 0 100px;
  }
  
  .fs1dqh {
    margin-top: -60px;
  }
}

@media (max-width: 767px) {
  .ypihuw {
    top: 56px;
    height: calc(100% - 56px);
  }

  body {
    font-size: 16px;
  }

  p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .ytvp4a ul li,
  .t17m8u ul li {
    font-size: 16px;
    padding-left: 24px;
  }

  h1 { font-size: 28px; margin: 36px 0 16px; }
  h2 { font-size: 22px; margin: 28px 0 12px; }
  h3 { font-size: 18px; margin: 20px 0 10px; }

  input,
  select,
  .ram95c {
    height: 50px;
    font-size: 15px;
    border-radius: 10px;
  }

  select {
    padding-right: 40px;
    background-size: 16px;
  }

  .cr6uyv {
    padding: 64px 0 80px;
  }

  .kskd6t {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .eainan {
    font-size: 16px;
  }

  .fs1dqh {
    margin-top: -40px;
  }

  .vap3bp {
    padding: 20px;
    border-radius: 20px;
  }

  .ecfwmx {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vap3bp input,
  .vap3bp select,
  .vap3bp .ram95c {
    height: 50px;
  }

  .spraf8 {
    font-size: 12px;
    margin-top: 14px;
  }

  .spkl0g,
  .fr2rw3 {
    padding: 48px 0;
  }

  .ktg5pi {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
  }

  .ktg5pi li a {
    padding: 10px 14px;
    font-size: 14px;
  }

  .r72mm9 {
    border-radius: 12px;
  }

  /* Responsive tables style override */
  .r72mm9 thead {
    display: none;
  }

  .r72mm9 tr {
    display: block;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 16px;
  }

  .r72mm9 td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 6px 0;
    font-size: 14px;
    text-align: right;
  }

  .r72mm9 td::before {
    content: attr(data-label) ": ";
    font-weight: 700;
    color: var(--text-heading);
    font-size: 13px;
    margin-right: 8px;
    text-align: left;
  }
  
  .u7ot9t {
    padding: 2px 8px;
    font-size: 12px;
  }

  .xhdi8t {
    padding: 20px;
  }

  .ulbpxb {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
