/* ─── Variables ──────────────────────────────────────────────── */
:root {
  --navy:    #0A1628;
  --blue:    #2563EB;
  --blue-lt: #3B82F6;
  --blue-dk: #1D4ED8;
  --white:   #FFFFFF;
  --grey-50: #F8FAFF;
  --grey-100:#EEF2FF;
  --grey-200:#E0E7FF;
  --grey-400:#94A3B8;
  --grey-600:#475569;
  --grey-800:#1E293B;
  --success:  #10B981;
  --warning:  #F59E0B;
  --danger:   #EF4444;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(10,22,40,.10);
  --shadow-lg:0 8px 40px rgba(10,22,40,.16);
  --transition: .2s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--grey-800);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dk); }
ul { list-style: none; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ─── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
.lead { font-size: 1.15rem; color: var(--grey-600); }
.section-label {
  display: inline-block;
  background: var(--grey-100);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head p { max-width: 580px; margin: 14px auto 0; color: var(--grey-600); }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font);
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover { background: var(--blue-dk); color: var(--white); box-shadow: 0 6px 20px rgba(37,99,235,.45); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--grey-200);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-nav {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
}
.btn-nav:hover { background: var(--blue-dk); }
.btn-success { background: var(--success); color: #fff; }
.btn-danger  { background: var(--danger);  color: #fff; }

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
}
.logo-icon { font-size: 1.4rem; }
.logo-text { color: var(--white); font-weight: 500; }
.logo-text strong { color: var(--blue-lt); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2040 50%, #102354 100%);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.10) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.2);
  border: 1px solid rgba(37,99,235,.4);
  color: #93C5FD;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--blue-lt); }
.hero .lead { color: rgba(255,255,255,.72); margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; color: rgba(255,255,255,.45); font-size: .82rem; }
.hero-note a { color: rgba(255,255,255,.65); text-decoration: underline; }

.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-card-title { color: rgba(255,255,255,.6); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; font-weight: 600; }
.step-mini { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.step-mini:last-child { margin-bottom: 0; }
.step-mini-num {
  width: 32px; height: 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  flex-shrink: 0;
}
.step-mini-text strong { color: #fff; font-size: .95rem; display: block; margin-bottom: 2px; }
.step-mini-text span { color: rgba(255,255,255,.55); font-size: .82rem; }

/* ─── Stats Bar ──────────────────────────────────────────────── */
.stats-bar { background: var(--grey-50); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label { font-size: .85rem; color: var(--grey-600); margin-top: 4px; }

/* ─── How It Works ───────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(33.33% - 0px); right: calc(33.33%);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-lt) 100%);
  z-index: 0;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-lt) 100%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 { margin-bottom: 10px; }
.step-card p { color: var(--grey-600); font-size: .92rem; }

/* ─── Features / Why ─────────────────────────────────────────── */
.features-bg { background: var(--grey-50); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--grey-200);
  transition: box-shadow var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { color: var(--grey-600); font-size: .88rem; }

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2040 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-banner h2, .cta-banner p { color: #fff; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,.7); margin: 12px auto 32px; max-width: 540px; }
.cta-banner .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--grey-50); color: var(--navy); }

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2040 100%);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p  { color: rgba(255,255,255,.65); margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--grey-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--grey-50); }
.faq-q .arrow { transition: transform var(--transition); font-size: 1.1rem; color: var(--blue); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .2s; padding: 0 24px; color: var(--grey-600); }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ─── Forms ──────────────────────────────────────────────────── */
.form-wrap { background: var(--white); border: 1px solid var(--grey-200); border-radius: 16px; padding: 48px; max-width: 800px; margin: 0 auto; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: .88rem; font-weight: 600; color: var(--grey-800); }
label .req { color: var(--danger); margin-left: 3px; }
input[type=text], input[type=email], input[type=tel], input[type=file],
textarea, select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  font-size: .93rem;
  font-family: var(--font);
  color: var(--grey-800);
  background: var(--grey-50);
  transition: border var(--transition), box-shadow var(--transition);
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
  background: #fff;
}
textarea { resize: vertical; min-height: 110px; }
.radio-group { display: flex; gap: 20px; }
.radio-group label { display: flex; align-items: center; gap: 6px; font-weight: 400; cursor: pointer; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-label input[type=checkbox] { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-hint { font-size: .8rem; color: var(--grey-400); }
.form-section-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin: 24px 0 0; grid-column: 1 / -1; border-top: 1px solid var(--grey-200); padding-top: 24px; }
.form-submit { grid-column: 1 / -1; margin-top: 8px; }

/* ─── Alerts ─────────────────────────────────────────────────── */
.alert { padding: 14px 20px; border-radius: 8px; margin-bottom: 24px; font-size: .92rem; }
.alert-success { background: #D1FAE5; color: #065F46; border-left: 4px solid var(--success); }
.alert-error   { background: #FEE2E2; color: #991B1B; border-left: 4px solid var(--danger); }
.alert-info    { background: var(--grey-100); color: #1E40AF; border-left: 4px solid var(--blue); }

/* ─── Contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.contact-info h3 { margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item-icon { font-size: 1.4rem; }
.contact-item-text strong { display: block; margin-bottom: 2px; font-size: .9rem; }
.contact-item-text span, .contact-item-text a { color: var(--grey-600); font-size: .88rem; }

/* ─── Thank You ──────────────────────────────────────────────── */
.thankyou-wrap { text-align: center; padding: 100px 24px; max-width: 600px; margin: 0 auto; }
.thankyou-icon { font-size: 5rem; margin-bottom: 24px; }
.thankyou-wrap h1 { margin-bottom: 16px; }
.thankyou-wrap p { color: var(--grey-600); margin-bottom: 32px; }

/* ─── Testimonial / Trust ────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 48px 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { text-align: center; color: rgba(255,255,255,.6); font-size: .88rem; }
.trust-item strong { display: block; color: #fff; font-size: 1.5rem; font-weight: 800; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--grey-800); padding: 64px 0 0; color: rgba(255,255,255,.65); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-links h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 10px; transition: color var(--transition); }
.footer-links a:hover { color: var(--blue-lt); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: .8rem; }
.footer-bottom p + p { margin-top: 8px; color: rgba(255,255,255,.4); max-width: 700px; margin-left: auto; margin-right: auto; }

/* ─── Status Badges ──────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-pending  { background: #FEF3C7; color: #92400E; }
.badge-accepted { background: #D1FAE5; color: #065F46; }
.badge-rejected { background: #FEE2E2; color: #991B1B; }

/* ─── Page Prose ─────────────────────────────────────────────── */
.prose h3 { margin: 28px 0 10px; }
.prose p { color: var(--grey-600); margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 20px; color: var(--grey-600); margin-bottom: 14px; }
.prose ul li { margin-bottom: 6px; }

/* ─── Hostinger CTA ──────────────────────────────────────────── */
.hostinger-box {
  background: linear-gradient(135deg, #673AB7 0%, #9C27B0 100%);
  border-radius: 14px;
  padding: 32px;
  color: #fff;
  text-align: center;
  margin: 40px 0;
}
.hostinger-box h3 { color: #fff; margin-bottom: 8px; }
.hostinger-box p { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 20px; }
.btn-hostinger { background: #fff; color: #673AB7; font-weight: 700; }
.btn-hostinger:hover { background: #f0f0f0; color: #673AB7; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-section-title { grid-column: 1; }
  .form-submit { grid-column: 1; }
  .form-wrap { padding: 28px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(10,22,40,.98);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 14px; }
}

/* ─── Legal Pages ────────────────────────────────────────────── */
.legal-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 88px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 24px;
}
.legal-toc h3 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-400);
  margin-bottom: 14px;
}
.legal-toc ol {
  padding-left: 18px;
  counter-reset: toc;
}
.legal-toc ol li {
  margin-bottom: 8px;
}
.legal-toc ol li a {
  font-size: .85rem;
  color: var(--grey-600);
  text-decoration: none;
  transition: color var(--transition);
}
.legal-toc ol li a:hover { color: var(--blue); }

.legal-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 36px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--grey-200);
}
.legal-body h3:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-body p  { color: var(--grey-600); margin-bottom: 14px; line-height: 1.8; }
.legal-body ul { list-style: disc; padding-left: 22px; color: var(--grey-600); margin-bottom: 16px; }
.legal-body ul li { margin-bottom: 6px; line-height: 1.7; }
.legal-body code { background: var(--grey-100); padding: 2px 7px; border-radius: 4px; font-size: .85rem; }
.legal-body a { color: var(--blue); }

@media (max-width: 760px) {
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

/* ─── Cookie Banner ──────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 -4px 30px rgba(0,0,0,.3);
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text p { color: rgba(255,255,255,.75); font-size: .88rem; line-height: 1.6; margin: 0; }
.cookie-text a { color: #93C5FD; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--blue-dk); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: .88rem;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* Cookie settings toggle (bottom-left corner) */
#cookie-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  transition: all var(--transition);
}
#cookie-toggle:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
#cookie-toggle.show { display: flex; }

/* ─── Math CAPTCHA ───────────────────────────────────────────── */
.captcha-group {
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.captcha-question {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.captcha-group input[type=number] {
  max-width: 110px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
}
