:root {
  /* --- Deep Cyber Palette --- */
  --bg-main: #0b0e14; /* Deepest Black-Blue */
  --bg-panel: #151921; /* Dark Panel */
  --bg-card: #1d2330; /* Lighter Card */

  --text-main: #e2e8f0; /* White-ish */
  --text-muted: #94a3b8; /* Muted Blue-Grey */

  /* Accents */
  --primary: #3b82f6; /* Royal Blue */
  --primary-glow: rgba(59, 130, 246, 0.5);

  --secondary: #06b6d4; /* Cyan */
  --accent-purple: #8b5cf6; /* Violet */
  --accent-green: #10b981; /* Emerald */
  --accent-orange: #f59e0b; /* Amber */
  --accent-red: #ef4444; /* Red */

  --border: #2d3748;
  --border-light: #4a5568;

  --font-ui: "Inter", system-ui, sans-serif;
  --font-code: "JetBrains Mono", monospace;

  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-ui);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Background Effects */
.noise-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+");
  z-index: -2;
  opacity: 0.4;
  pointer-events: none;
}
.glow-spot {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}
.top-left {
  top: -200px;
  left: -200px;
  background: var(--accent-purple);
}
.center-right {
  top: 40%;
  right: -200px;
  background: var(--primary);
}
.bottom-left {
  bottom: -200px;
  left: 10%;
  background: var(--secondary);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}
h1 {
  font-size: 3.5rem;
  letter-spacing: -1.5px;
}
h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.5rem;
}
p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  color: var(--primary);
  font-weight: 700;
}

/* Utilities */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}
.bg-darker {
  background-color: var(--bg-panel);
}
.max-900 {
  max-width: 900px;
  margin: 0 auto;
}
.max-800 {
  max-width: 800px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-ui);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 25px var(--primary-glow);
}

.btn--gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  color: white;
  border: none;
}
.btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
  opacity: 0.95;
}

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

.btn--sm {
  padding: 8px 16px;
  font-size: 0.9rem;
  background: var(--primary);
  color: white;
  border: none;
}
.full {
  width: 100%;
}

/* Header */
.header {
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 14, 20, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.header__wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-code);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-main);
}
.logo i {
  color: var(--primary);
}
.logo img {
  width: 50px;
  height: 50px;
}
.blink {
  animation: blink 1.2s infinite steps(2);
  color: var(--accent-green);
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
}
.nav a:hover {
  color: var(--text-main);
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s ease;
}
.nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.burger-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.line {
  width: 28px;
  height: 2px;
  background: var(--text-main);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: var(--bg-main);
  border-top: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 999;
  padding: 40px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Hero */
.hero {
  padding: 140px 0 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  font-family: var(--font-code);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.tech-stack-row {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: var(--font-code);
}
.tech-stack-row .icons {
  display: flex;
  gap: 15px;
  color: var(--text-main);
}

/* IDE Window */
.ide-window {
  background: #0d1117;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  position: relative;
}
.ide-header {
  background: #161b22;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.dots {
  display: flex;
  gap: 8px;
  margin-right: 20px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.red {
  background: #ff5f56;
}
.yellow {
  background: #ffbd2e;
}
.green {
  background: #27c93f;
}
.filename {
  color: var(--text-muted);
  font-family: var(--font-code);
  font-size: 0.85rem;
}
.ide-body {
  padding: 30px;
  overflow-x: auto;
}
pre code {
  font-family: var(--font-code);
  font-size: 0.95rem;
  color: #c9d1d9;
}
.keyword {
  color: var(--accent-red);
}
.string {
  color: var(--accent-green);
}
.func {
  color: var(--primary);
}
.type {
  color: var(--secondary);
}

/* Engine (Features) */
.engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.engine-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: 0.3s;
  height: 100%;
}
.engine-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}
.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.card-icon i {
  width: 28px;
  height: 28px;
}

/* Tracks */
.section-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.track-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.track-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--border);
  transition: 0.3s;
}
.track-card:hover {
  background: var(--bg-panel);
  transform: scale(1.02);
}

.track-card.blue:hover::before {
  background: var(--primary);
}
.track-card.purple:hover::before {
  background: var(--accent-purple);
}
.track-card.orange:hover::before {
  background: var(--accent-orange);
}
.track-card.green:hover::before {
  background: var(--accent-green);
}

.track-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.track-header i {
  width: 32px;
  height: 32px;
  color: var(--text-main);
}
.track-desc {
  flex-grow: 1;
  margin-bottom: 25px;
  color: var(--text-secondary);
  font-size: 1rem;
}
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.tech-stack span {
  font-size: 0.8rem;
  font-family: var(--font-code);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.track-meta {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}
.track-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Syllabus Accordion */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.acc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.acc-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.acc-header:hover {
  background: rgba(255, 255, 255, 0.02);
}
.acc-num {
  font-family: var(--font-code);
  color: var(--border-light);
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 30px;
}
.acc-title {
  flex-grow: 1;
}
.acc-title h4 {
  margin: 0;
  font-size: 1.2rem;
}
.acc-duration {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-green);
  margin-top: 5px;
  font-family: var(--font-code);
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-panel);
}
.acc-content ul {
  padding: 30px;
  padding-left: 50px;
}
.acc-content li {
  margin-bottom: 15px;
  color: var(--text-secondary);
  list-style: disc;
}
.acc-card.active .acc-content {
  max-height: 500px;
} /* Sufficient max-height */
.acc-card.active .acc-header i {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Comparison Table */
.compare-table-wrapper {
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 10px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.compare-table th,
.compare-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.compare-table th.highlight,
.compare-table td.highlight {
  background: rgba(59, 130, 246, 0.05);
  color: var(--text-main);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.compare-table td {
  color: var(--text-secondary);
}
.compare-table tr:last-child td {
  border-bottom: none;
}

/* Culture */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.culture-item {
  text-align: center;
}
.culture-item i {
  width: 40px;
  height: 40px;
  color: var(--accent-purple);
  margin-bottom: 20px;
}
.culture-item h4 {
  font-size: 1.3rem;
}

/* Mentors */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mentor-card {
  background: var(--bg-card);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.mentor-head {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
.m-avatar {
  width: 60px;
  height: 60px;
  background: var(--bg-panel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.m-info h4 {
  margin: 0;
  font-size: 1.1rem;
}
.m-info span {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}
.m-bio {
  font-size: 0.95rem;
  margin: 0;
}

/* Certificate */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cert-features li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
  color: var(--text-secondary);
}
.cert-features i {
  color: var(--accent-green);
  width: 24px;
  flex-shrink: 0;
}
.cert-card-mockup {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cert-card-mockup::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05),
    transparent 60%
  );
  pointer-events: none;
}
.c-logo {
  font-family: var(--font-code);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-muted);
}
.c-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}
.c-name {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 30px;
  font-family: "Times New Roman", serif;
  font-style: italic;
}
.c-track {
  font-family: var(--font-code);
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: inline-block;
}
.c-hash {
  margin-top: 10px;
  font-family: var(--font-code);
  font-size: 0.7rem;
  color: var(--border-light);
}

/* Pricing */
.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.price-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
}
.price-box.recommended {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.05), var(--bg-card));
}
.badge-rec {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 700;
}
.p-head {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
}
.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.p-list li {
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  color: var(--text-secondary);
}
.p-list i {
  color: var(--accent-green);
  width: 20px;
}
.p-list li.mute {
  opacity: 0.5;
  text-decoration: line-through;
}
.p-list li.mute i {
  color: var(--text-muted);
}

/* Form */
.form-layout {
  display: flex;
  justify-content: center;
}
.form-box {
  width: 100%;
  max-width: 600px;
  background: var(--bg-card);
  padding: 50px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.form-head {
  text-align: center;
  margin-bottom: 40px;
}
.inp-grp {
  margin-bottom: 25px;
}
.inp-grp label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-family: var(--font-code);
  color: var(--text-secondary);
}
.inp-grp input {
  width: 100%;
  padding: 14px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-main);
  font-family: var(--font-code);
  transition: 0.2s;
}
.inp-grp input:focus {
  border-color: var(--primary);
  outline: none;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.accent-text {
  color: var(--accent-red);
  font-weight: 700;
}
.check-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.check-row label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.check-row a {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #020408;
  padding: 80px 0 30px;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.f-logo {
  font-family: var(--font-code);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.f-logo i {
  color: var(--primary);
}
.f-block h4 {
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: 1rem;
}
.f-block a,
.f-block p {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.f-block a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  text-align: center;
  color: var(--border-light);
  font-size: 0.85rem;
}

/* Cookie */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--primary);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
}
.c-text {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.c-text i {
  color: var(--primary);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .desktop-nav,
  .header-right .btn {
    display: none;
  }
  .culture-grid {
    grid-template-columns: 1fr;
  }
  .ide-window {
    max-width: 300px;
  }
  .burger-btn {
    display: flex;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero__grid,
  .grid-2,
  .tracks-grid,
  .engine-grid,
  .mentors-grid,
  .pricing-wrapper,
  .footer-grid,
  .split-layout,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .hero__grid {
    display: flex;
    flex-direction: column;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .compare-table-wrapper {
    margin: 0 -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
}
