/* =========================================================
   Credit Strategy Guide — Custom Styles (on top of Bootstrap)
   ========================================================= */

:root {
  --csg-navy: #0b2545;
  --csg-navy-dark: #071a33;
  --csg-navy-2: #13315c;
  --csg-gold: #c9a227;
  --csg-gold-dark: #a9861c;
  --csg-gold-light: #f0dfa8;
  --csg-ink: #24313f;
  --csg-muted: #5d6c7d;
  --csg-line: #e4eaf1;
  --csg-bg: #f5f7fa;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--csg-ink);
  background: #fff;
  font-size: 1rem;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--csg-navy);
  line-height: 1.25;
}

a { color: var(--csg-navy); }
a:hover { color: var(--csg-gold-dark); }

::selection { background: var(--csg-gold-light); color: var(--csg-navy); }

/* ---------- Section scaffolding ---------- */
.section { padding: 84px 0; }
.section-sm { padding: 60px 0; }
.section-light { background: var(--csg-bg); }

.section-head { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-head .kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--csg-gold-dark);
  margin-bottom: 12px;
}
.section-head .kicker::before,
.section-head .kicker::after { content: "— "; }
.section-head .kicker::after { content: " —"; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 14px; }
.section-head p { color: var(--csg-muted); margin-bottom: 0; }

.text-muted-2 { color: var(--csg-muted); }
.text-navy { color: var(--csg-navy) !important; }
.text-gold { color: var(--csg-gold) !important; }
.bg-light-2 { background: var(--csg-bg); }

/* ---------- Buttons ---------- */
.btn-navy {
  background: var(--csg-navy);
  border: 1px solid var(--csg-navy);
  color: #fff;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  transition: all .25s ease;
}
.btn-navy:hover, .btn-navy:focus {
  background: var(--csg-navy-2);
  border-color: var(--csg-navy-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 37, 69, .25);
}

.btn-gold {
  background: var(--csg-gold);
  border: 1px solid var(--csg-gold);
  color: var(--csg-navy);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  transition: all .25s ease;
}
.btn-gold:hover, .btn-gold:focus {
  background: var(--csg-gold-light);
  border-color: var(--csg-gold-light);
  color: var(--csg-navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 162, 39, .3);
}

.btn-outline-light-2 {
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  transition: all .25s ease;
}
.btn-outline-light-2:hover {
  background: #fff;
  color: var(--csg-navy);
  border-color: #fff;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--csg-navy-dark);
  color: #c6d3e3;
  font-size: 0.845rem;
}
.topbar a { color: #c6d3e3; text-decoration: none; }
.topbar a:hover { color: var(--csg-gold-light); }
.topbar .bi { color: var(--csg-gold); margin-right: 7px; }

/* ---------- Navbar ---------- */
.navbar-csg {
  background: #fff;
  box-shadow: 0 2px 18px rgba(11, 37, 69, .08);
  padding: 14px 0;
}
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--csg-navy) 0%, var(--csg-navy-2) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--csg-gold);
  font-size: 1.45rem;
  flex: 0 0 auto;
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.15; margin-left: 12px; }
.brand-text .brand-1 {
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--csg-navy);
  letter-spacing: -0.01em;
}
.brand-text .brand-2 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--csg-gold-dark);
}
.navbar-csg .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--csg-navy);
  padding: 8px 16px !important;
  position: relative;
}
.navbar-csg .nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 100%; bottom: 2px;
  height: 2.5px;
  background: var(--csg-gold);
  transition: right .25s ease;
}
.navbar-csg .nav-link:hover::after,
.navbar-csg .nav-link.active::after { right: 16px; }
.navbar-csg .nav-link.active { color: var(--csg-gold-dark); }
.navbar-toggler { border-color: var(--csg-line); }
.navbar-toggler:focus { box-shadow: none; }
.nav-cta { margin-left: 10px; }

/* ---------- Home hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(201, 162, 39, 0.16) 0%, rgba(201, 162, 39, 0) 60%),
    linear-gradient(140deg, var(--csg-navy-dark) 0%, var(--csg-navy) 48%, var(--csg-navy-2) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero .container { position: relative; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--csg-gold-light); }
.hero p.lead-2 { color: #c3d0e2; font-size: 1.08rem; max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, .14);
  border: 1px solid rgba(201, 162, 39, .45);
  color: var(--csg-gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-img-wrap { position: relative; }
.hero-img-wrap .img-main {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(4, 14, 30, .5);
}
.hero-float-card {
  position: absolute;
  left: -26px; bottom: 34px;
  background: #fff;
  color: var(--csg-ink);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 18px 40px rgba(4, 14, 30, .35);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-float-card .fc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--csg-navy);
  color: var(--csg-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex: 0 0 auto;
}
.hero-float-card .fc-num { font-weight: 800; font-size: 1.25rem; color: var(--csg-navy); line-height: 1.1; }
.hero-float-card .fc-label { font-size: 0.78rem; color: var(--csg-muted); }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--csg-gold); }
.stat-item { text-align: center; padding: 8px 0; }
.stat-item .stat-num {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--csg-navy);
  line-height: 1.1;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(11, 37, 69, .72);
}

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(201, 162, 39, 0.14) 0%, rgba(201, 162, 39, 0) 55%),
    linear-gradient(135deg, var(--csg-navy-dark) 0%, var(--csg-navy) 55%, var(--csg-navy-2) 100%);
  color: #fff;
  padding: 58px 0 62px;
}
.page-banner::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--csg-gold) 0%, rgba(201,162,39,0) 70%);
}
.page-banner .breadcrumb {
  --bs-breadcrumb-divider: "›";
  font-size: 0.86rem;
  margin-bottom: 14px;
}
.page-banner .breadcrumb a { color: #aebfd6; text-decoration: none; }
.page-banner .breadcrumb a:hover { color: var(--csg-gold-light); }
.page-banner .breadcrumb-item.active { color: var(--csg-gold-light); font-weight: 600; }
.page-banner h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 0;
}

/* ---------- Cards ---------- */
.card-csg {
  background: #fff;
  border: 1px solid var(--csg-line);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  display: flex;
  flex-direction: column;
}
.card-csg:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(11, 37, 69, .13);
  border-color: rgba(201, 162, 39, .55);
}
.card-csg .card-img-2 {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.card-csg .card-body-2 { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1 1 auto; }
.card-csg .card-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(11, 37, 69, .06);
  color: var(--csg-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: all .28s ease;
}
.card-csg:hover .card-icon { background: var(--csg-gold); color: var(--csg-navy); }
.card-csg h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card-csg p { color: var(--csg-muted); font-size: 0.95rem; margin-bottom: 16px; }
.card-csg ul.check-list { list-style: none; padding: 0; margin: 0 0 18px; }
.card-csg ul.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
  font-size: 0.93rem;
  color: var(--csg-ink);
}
.card-csg ul.check-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0; top: 0;
  color: var(--csg-gold-dark);
  font-size: 1rem;
}
.card-csg .card-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--csg-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.card-csg .card-link:hover { color: var(--csg-gold-dark); gap: 10px; }

/* ---------- Feature / icon boxes ---------- */
.feature-box {
  background: #fff;
  border: 1px solid var(--csg-line);
  border-radius: 16px;
  padding: 30px 26px;
  height: 100%;
  text-align: center;
  transition: all .28s ease;
}
.feature-box:hover { border-color: rgba(201,162,39,.6); box-shadow: 0 18px 36px rgba(11,37,69,.1); transform: translateY(-6px); }
.feature-box .feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--csg-navy) 0%, var(--csg-navy-2) 100%);
  color: var(--csg-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.feature-box h4 { font-size: 1.08rem; margin-bottom: 10px; }
.feature-box p { font-size: 0.92rem; color: var(--csg-muted); margin-bottom: 0; }

/* ---------- Steps ---------- */
.step-item { position: relative; padding-top: 6px; }
.step-num {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--csg-gold);
  color: var(--csg-gold-dark);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step-item h4 { font-size: 1.12rem; margin-bottom: 10px; }
.step-item p { color: var(--csg-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Blog cards ---------- */
.blog-card .blog-img-wrap { overflow: hidden; display: block; }
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.blog-card:hover img { transform: scale(1.06); }
.blog-card .card-body-2 h3 { font-size: 1.16rem; line-height: 1.45; }
.blog-card .card-body-2 h3 a { color: var(--csg-navy); text-decoration: none; }
.blog-card .card-body-2 h3 a:hover { color: var(--csg-gold-dark); }
.read-more {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--csg-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.read-more:hover { color: var(--csg-gold-dark); }

/* ---------- Article ---------- */
.article-body { max-width: 820px; margin: 0 auto; }
.article-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.18rem; margin: 28px 0 12px; }
.article-body p { color: #3d4b5c; margin-bottom: 18px; }
.article-body ul, .article-body ol { color: #3d4b5c; margin-bottom: 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body img { border-radius: 14px; }
.article-body strong { color: var(--csg-navy); }

/* ---------- Testimonials ---------- */
.testi-card {
  background: #fff;
  border: 1px solid var(--csg-line);
  border-radius: 16px;
  padding: 30px 28px;
  height: 100%;
  position: relative;
}
.testi-card .bi-quote {
  font-size: 2.6rem;
  color: rgba(201, 162, 39, .25);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.testi-card .stars { color: var(--csg-gold); font-size: .95rem; margin-bottom: 14px; }
.testi-card p { color: var(--csg-ink); font-size: 0.97rem; margin-bottom: 18px; }
.testi-card .testi-name { font-weight: 700; color: var(--csg-navy); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 10% 0%, rgba(201, 162, 39, 0.18) 0%, rgba(201, 162, 39, 0) 55%),
    linear-gradient(135deg, var(--csg-navy-dark) 0%, var(--csg-navy) 60%, var(--csg-navy-2) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 52px 48px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c3d0e2; }

/* ---------- Forms ---------- */
.form-control-csg {
  border: 1.5px solid var(--csg-line);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.96rem;
  color: var(--csg-ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control-csg:focus {
  border-color: var(--csg-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .15);
}
.form-control-csg::placeholder { color: #9aa7b6; }
.form-label-csg {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--csg-navy);
  margin-bottom: 7px;
}

/* ---------- Contact info cards ---------- */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--csg-line);
  border-left: 4px solid var(--csg-gold);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-info-card .ci-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--csg-navy);
  color: var(--csg-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex: 0 0 auto;
}
.contact-info-card h4 { font-size: 1.02rem; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 0.95rem; color: var(--csg-muted); text-decoration: none; margin-bottom: 0; }
.contact-info-card a:hover { color: var(--csg-gold-dark); }

/* ---------- Services page checklist & outline button ---------- */
.check-list-2 { list-style: none; padding-left: 0; margin-bottom: 10px; }
.check-list-2 li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 0.97rem;
  color: var(--csg-ink);
}
.check-list-2 li .bi {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--csg-gold-dark);
  font-size: 1.05rem;
}
.btn-outline-navy2 {
  border: 1.5px solid var(--csg-navy);
  color: var(--csg-navy);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  background: transparent;
  transition: all .25s ease;
}
.btn-outline-navy2:hover, .btn-outline-navy2:focus {
  background: var(--csg-navy);
  color: #fff;
}

/* ---------- Insurance sub-items ---------- */
.ins-sub {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--csg-line);
  border-radius: 12px;
  padding: 18px 20px;
  transition: all .25s ease;
}
.ins-sub:hover { border-color: rgba(201,162,39,.6); transform: translateY(-4px); box-shadow: 0 12px 26px rgba(11,37,69,.09); }
.ins-sub .ins-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: rgba(201, 162, 39, .14);
  color: var(--csg-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex: 0 0 auto;
}
.ins-sub h5 { font-size: 1rem; margin-bottom: 4px; }
.ins-sub p { font-size: 0.86rem; color: var(--csg-muted); margin-bottom: 0; }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 38px 0 14px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li { color: #3d4b5c; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 18px; }
.legal-content li { margin-bottom: 8px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--csg-navy-dark);
  color: #b9c6d8;
  font-size: 0.94rem;
}
.footer a { color: #b9c6d8; text-decoration: none; transition: color .2s ease, padding-left .2s ease; }
.footer a:hover { color: var(--csg-gold-light); }
.footer .footer-head {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-head::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  border-radius: 3px;
  background: var(--csg-gold);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 11px; }
.footer ul li a::before { content: "\203A\00A0"; color: var(--csg-gold); }
.footer .footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer .footer-contact li .bi { color: var(--csg-gold); margin-top: 4px; }
.footer .footer-contact li a::before { content: ""; }
.footer .social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  font-size: 1.05rem;
  margin-right: 10px;
  transition: all .25s ease;
}
.footer .social-row a:hover { background: var(--csg-gold); color: var(--csg-navy) !important; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 20px 0;
  font-size: 0.86rem;
  color: #8fa2ba;
}
.footer-bottom a { color: #8fa2ba; }
.footer-bottom a:hover { color: var(--csg-gold-light); }

/* ---------- About page ---------- */
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: 18px; box-shadow: 0 24px 50px rgba(11,37,69,.18); }
.about-exp-badge {
  position: absolute;
  right: -18px; bottom: 34px;
  background: var(--csg-gold);
  color: var(--csg-navy);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 18px 36px rgba(201,162,39,.4);
}
.about-exp-badge .num { font-size: 1.9rem; font-weight: 800; line-height: 1; display: block; }
.about-exp-badge .lbl { font-size: 0.75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.value-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.value-list .v-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(201, 162, 39, .14);
  color: var(--csg-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex: 0 0 auto;
}
.value-list h5 { font-size: 1.02rem; margin-bottom: 4px; }
.value-list p { font-size: 0.93rem; color: var(--csg-muted); margin-bottom: 0; }

/* ---------- Subscribe / unsubscribe ---------- */
.sub-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.sub-benefit .sb-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--csg-navy);
  color: var(--csg-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex: 0 0 auto;
}
.sub-benefit h5 { font-size: 1.02rem; margin-bottom: 4px; }
.sub-benefit p { font-size: 0.92rem; color: var(--csg-muted); margin-bottom: 0; }
.form-card {
  background: #fff;
  border: 1px solid var(--csg-line);
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 18px 40px rgba(11, 37, 69, .08);
  height: 100%;
}
.form-card h3 { margin-bottom: 8px; }
.note-2 { font-size: 0.84rem; color: var(--csg-muted); }

/* ---------- Misc ---------- */
.divider-gold {
  width: 64px; height: 4px;
  background: var(--csg-gold);
  border-radius: 4px;
  margin: 0 auto 18px;
}
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--csg-line);
  box-shadow: 0 18px 40px rgba(11, 37, 69, .1);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px) {
  .section { padding: 64px 0; }
  .hero-float-card { left: 12px; bottom: 12px; }
  .about-exp-badge { right: 10px; }
  .cta-band { padding: 40px 28px; }
  .navbar-csg .nav-link { padding: 10px 8px !important; }
}
@media (max-width: 575.98px) {
  .hero h1 { font-size: 1.95rem; }
  .page-banner { padding: 44px 0 48px; }
  .form-card { padding: 30px 22px; }
}


.navbar-brand img{
  width: 250px;
}