/* ============================================
   AsureInsure.com — Main Stylesheet
   Light Blue & White Theme
   ============================================ */

:root {
  --blue:       #1a6bbf;
  --blue-mid:   #2585e0;
  --blue-light: #e6f1fb;
  --blue-pale:  #f0f7ff;
  --blue-dark:  #0c447c;
  --navy:       #0d2b4e;
  --white:      #ffffff;
  --gold:       #f7a800;
  --border:     #b8d8f8;
  --border-light: #daeeff;
  --text:       #1a2332;
  --text-mid:   #4a5568;
  --text-muted: #718096;
  --bg-soft:    #f7fbff;
  --radius:     8px;
  --radius-lg:  12px;
  --shadow:     0 2px 12px rgba(26,107,191,0.1);
  --shadow-lg:  0 8px 32px rgba(26,107,191,0.15);
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: all 0.2s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  text-align: center;
  font-size: 13px;
  padding: 8px 20px;
}
.topbar a { color: var(--gold); font-weight: 600; }

/* ============ HEADER ============ */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26,107,191,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  overflow: visible;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  background: var(--blue);
  border-radius: 8px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}
.logo-tag {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-top: -2px;
}
nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: visible;
  position: relative;
}
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
nav a:hover, nav a.active {
  background: var(--blue-light);
  color: var(--blue);
}
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
@media(max-width:768px) {
  .hamburger { display: flex; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px;
    gap: 2px;
    z-index: 200;
  }
  nav.open a { width: 100%; }
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: var(--blue-pale);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 6px; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--blue-mid) 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}
@media(max-width:768px) { .hero h1 { font-size: 28px; } .hero p { font-size: 15px; } }

/* ============ INSURANCE TYPE TABS ============ */
.ins-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ins-tab {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ins-tab:hover, .ins-tab.active {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

/* ============ QUOTE FORM ============ */
.quote-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.quote-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media(max-width:480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text-mid); }
.form-group input, .form-group select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  font-family: var(--font);
  width: 100%;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,107,191,0.1);
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  letter-spacing: .02em;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 20px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media(max-width:600px) { .stats-inner { grid-template-columns: repeat(2,1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
}
.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============ SECTION ============ */
.section { padding: 60px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-title em { font-style: normal; color: var(--blue); }
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.section-header { text-align: center; margin-bottom: 40px; }

/* ============ INSURANCE CARDS ============ */
.ins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.ins-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  display: block;
  cursor: pointer;
}
.ins-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.ins-card-icon {
  width: 60px; height: 60px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  transition: var(--transition);
}
.ins-card:hover .ins-card-icon { background: var(--blue); }
.ins-card:hover .ins-card-icon span { filter: brightness(10); }
.ins-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.ins-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.ins-card-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
}
.ins-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ============ HOW IT WORKS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media(max-width:640px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============ TRUST BADGES ============ */
.trust-bar {
  background: var(--blue-pale);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 20px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.trust-title { font-weight: 600; font-size: 14px; color: var(--navy); }
.trust-sub { font-size: 12px; color: var(--text-muted); }

/* ============ AFFILIATE WIDGET ============ */
.affiliate-section {
  background: var(--blue-pale);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
  text-align: center;
}
.affiliate-section h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.affiliate-section p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 48px 20px;
}
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.8); }
@media(max-width:768px) { .page-hero h1 { font-size: 26px; } }

/* ============ MAIN CONTENT LAYOUT ============ */
.main-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}
@media(max-width:900px) { .main-wrap { grid-template-columns: 1fr; } }

/* ============ ARTICLE BODY ============ */
.article-body h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-light);
}
.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 20px 0 8px;
}
.article-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.article-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.article-body li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.callout {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.7;
}

/* ============ PROVIDER CARDS ============ */
.provider-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.provider-card:hover { box-shadow: var(--shadow); border-color: var(--border); }
.provider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.provider-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}
.provider-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.provider-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0;
}
.provider-stat {
  background: var(--blue-pale);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}
.provider-stat-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.provider-stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.pros-cons-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.p-pros, .p-cons {
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 13px;
}
.p-pros { background: #f0fdf4; border: 1px solid #86efac; }
.p-cons { background: #fff7f7; border: 1px solid #fca5a5; }
.p-pros h5 { color: #166534; margin-bottom: 6px; font-size: 12px; }
.p-cons h5 { color: #991b1b; margin-bottom: 6px; font-size: 12px; }
.p-pros ul, .p-cons ul { list-style: none; padding: 0; }
.p-pros li::before { content: "✓ "; color: #16a34a; font-weight: 700; }
.p-cons li::before { content: "✗ "; color: #dc2626; font-weight: 700; }
.apply-btn {
  display: block;
  text-align: right;
}
.apply-btn a {
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 6px;
  display: inline-block;
  transition: var(--transition);
}
.apply-btn a:hover { background: var(--blue-dark); }

/* ============ RATE TABLE ============ */
.rate-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.rate-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 14px;
  text-align: left;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.rate-table td { padding: 12px 14px; border-bottom: 1px solid var(--border-light); color: var(--text-mid); }
.rate-table tr:nth-child(even) td { background: var(--blue-pale); }
.rate-table tr:hover td { background: var(--blue-light); }

/* ============ SIDEBAR ============ */
aside { position: relative; }
.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  overflow: hidden;
}
.widget-header {
  background: var(--blue);
  color: var(--white);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}
.widget-body { padding: 16px; }
.widget-body ul { list-style: none; padding: 0; }
.widget-body li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.widget-body li:last-child { border: none; }
.widget-body li a { color: var(--blue); font-weight: 500; }
.widget-body li a:hover { color: var(--blue-dark); }
.sidebar-cta {
  background: var(--blue);
  padding: 20px 16px;
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); font-size: 15px; margin-bottom: 6px; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 12px; margin-bottom: 14px; }
.sidebar-cta a {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
}
.ad-slot {
  background: var(--blue-pale);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  min-height: 250px;
}

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}
.faq-q { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============ VERTICAL LINKS BAR ============ */
.vertical-links-bar {
  background: var(--blue-pale);
  border-top: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  padding: 24px 20px;
  margin-top: 40px;
}
.vertical-links-bar h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.vertical-links-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vlink {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.vlink:hover { border-color: var(--blue); background: var(--blue-light); }
.vlink.current { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ============ NEWSLETTER ============ */
.newsletter-widget {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.newsletter-widget h4 { color: var(--white); font-size: 16px; margin-bottom: 6px; }
.newsletter-widget p { color: rgba(255,255,255,0.8); font-size: 13px; margin-bottom: 14px; }
.newsletter-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  margin-bottom: 8px;
}
.newsletter-btn {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-btn:hover { background: #e09600; }

/* ============ FOOTER ============ */
footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media(max-width:768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .logo-name { color: var(--white); font-size: 24px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 10px; line-height: 1.6; }
.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 12px; }
.footer-legal a:hover { color: var(--white); }

/* ============ DISCLAIMER ============ */
.disclaimer {
  background: #f8f9fa;
  border-top: 1px solid #e2e8f0;
  padding: 14px 20px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ============ SUREHITS WIDGET ============ */
.surehits-wrap {
  background: var(--white);
  border: 2px solid var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 28px 0;
}
.surehits-wrap h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-align: center;
}
.surehits-wrap p {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
