/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.1
*/

/*************** ADD CUSTOM CSS HERE ***************/

/* ========================================================
   123B - HEADER REDESIGN 2026
   - Professional top bar (info, social)
   - Premium main header (logo, nav, CTA buttons)
   - Sticky header on scroll
   Reference: bbtokens.io style
   ======================================================== */

:root {
  --brand-primary: #ff6b00;
  --brand-secondary: #ffd700;
  --brand-red: #d40000;
  --brand-dark: #0a1f3d;
  --brand-darker: #050d1a;
  --brand-accent: #00c8ff;
  --header-height: 80px;
  --topbar-height: 36px;
}

/* ===== TOP BAR ===== */
#top-bar {
  background: linear-gradient(90deg, #050d1a 0%, #0a1f3d 50%, #050d1a 100%);
  min-height: var(--topbar-height);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  font-size: 12.5px;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1001;
}
#top-bar .flex-row {
  min-height: var(--topbar-height);
  align-items: center;
}
#top-bar .nav > li > a,
#top-bar .nav > li > a:visited {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 12.5px;
  padding: 4px 12px;
  transition: color 0.2s ease;
}
#top-bar .nav > li > a:hover {
  color: var(--brand-secondary);
}
#top-bar .nav > li {
  position: relative;
}
#top-bar .nav > li + li::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}

/* Top bar info icons */
.topbar-info {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 12.5px;
  padding: 0 5px;
}
.topbar-info .topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
}
.topbar-info .topbar-item i {
  color: var(--brand-secondary);
  font-size: 14px;
}
.topbar-info .topbar-item a,
.topbar-info .topbar-item strong {
  color: #fff;
  font-weight: 700;
}
.topbar-info .topbar-item a:hover {
  color: var(--brand-secondary);
}
.topbar-info .topbar-pulse::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 4px;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse-green 1.8s infinite;
  vertical-align: middle;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.fc-123b-topbar-info-static,
.fc-123b-topbar-info {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 12.5px;
  flex-wrap: wrap;
}
.fc-123b-topbar-info-static .fc-item,
.fc-123b-topbar-info .fc-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.fc-123b-topbar-info-static .fc-item i,
.fc-123b-topbar-info .fc-item i {
  color: #FFD700;
  font-size: 14px;
}
.fc-123b-topbar-info-static .fc-item a,
.fc-123b-topbar-info-static .fc-item strong,
.fc-123b-topbar-info .fc-item a,
.fc-123b-topbar-info .fc-item strong {
  color: #fff;
  font-weight: 700;
}
.fc-123b-topbar-info-static .fc-item a:hover,
.fc-123b-topbar-info .fc-item a:hover {
  color: #FFD700;
}
.fc-123b-topbar-info-static .fc-pulse::before,
.fc-123b-topbar-info .fc-pulse::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: fc-pulse 1.8s infinite;
  vertical-align: middle;
}
@keyframes fc-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.fc-123b-topbar-social-static {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
}
.fc-123b-topbar-social-static a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.fc-123b-topbar-social-static a:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-1px);
}

/* Top bar info + social (injected via JS) */
.fc-123b-topbar-info {
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 12.5px;
}
.fc-123b-topbar-info .fc-info-inner {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.fc-123b-topbar-info .fc-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.fc-123b-topbar-info .fc-item i {
  color: #FFD700;
  font-size: 14px;
}
.fc-123b-topbar-info .fc-item a,
.fc-123b-topbar-info .fc-item strong {
  color: #fff;
  font-weight: 700;
}
.fc-123b-topbar-info .fc-item a:hover {
  color: #FFD700;
}
.fc-123b-topbar-info .fc-pulse::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: fc-pulse 1.8s infinite;
  vertical-align: middle;
}
@keyframes fc-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.fc-123b-topbar-social {
  padding: 0 !important;
}
.fc-123b-topbar-social .fc-social-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fc-123b-topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.fc-123b-topbar-social a:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 849px) {
  .fc-123b-topbar-info,
  .fc-123b-topbar-social {
    display: none !important;
  }
}

/* Top bar social */
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 5px;
}
.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  transition: all 0.2s ease;
}
.topbar-social a:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== MAIN HEADER ===== */
#masthead.header-main {
  background: linear-gradient(180deg, #0a1f3d 0%, #102a52 100%);
  min-height: var(--header-height);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid var(--brand-primary);
  position: relative;
  z-index: 1000;
}
#masthead.header-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 107, 0, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(0, 200, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
#masthead .header-inner {
  min-height: var(--header-height);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ===== LOGO ===== */
#logo {
  width: 220px;
  max-width: 220px;
  margin-right: 20px;
  position: relative;
}
#logo a {
  display: inline-flex;
  align-items: center;
  position: relative;
}
#logo img.header_logo,
#logo img.header-logo {
  max-height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(255, 107, 0, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}
#logo a:hover img.header_logo,
#logo a:hover img.header-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.6));
}

/* ===== MAIN NAV ===== */
.header-nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header-nav-main.nav > li > a {
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 12px 14px !important;
  line-height: 1.2 !important;
  position: relative;
  transition: all 0.2s ease;
  border-radius: 6px;
  white-space: nowrap;
}
.header-nav-main.nav > li > a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.header-nav-main.nav > li > a:hover,
.header-nav-main.nav > li.active > a,
.header-nav-main.nav > li.current-menu-item > a {
  color: var(--brand-secondary) !important;
  background: rgba(255, 215, 0, 0.06);
}
.header-nav-main.nav > li > a:hover::after,
.header-nav-main.nav > li.active > a::after,
.header-nav-main.nav > li.current-menu-item > a::after {
  transform: translateX(-50%) scaleX(1);
}

/* Hot / New badge on menu items */
.header-nav-main.nav > li.menu-item-hot > a::before {
  content: "HOT";
  position: absolute;
  top: 2px;
  right: 2px;
  background: linear-gradient(135deg, #ff4757, #ff6b00);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(255, 71, 87, 0.4);
  animation: badge-pulse 2s infinite;
}
.header-nav-main.nav > li.menu-item-new > a::before {
  content: "NEW";
  position: absolute;
  top: 2px;
  right: 2px;
  background: linear-gradient(135deg, #00c8ff, #00e0a0);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 200, 255, 0.4);
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ===== HEADER BUTTONS (CTA) ===== */
.header-button {
  margin: 0 3px;
}
.header-button .button {
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0 18px !important;
  height: 40px;
  line-height: 40px !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.header-button-1 .button {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
}
.header-button-1 .button:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--brand-secondary) !important;
  color: var(--brand-secondary) !important;
  transform: translateY(-1px);
}
.header-button-2 .button {
  background: linear-gradient(135deg, #ff6b00 0%, #ff4500 100%) !important;
  color: #fff !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.header-button-2 .button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff4500 0%, #ff6b00 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.header-button-2 .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.45) !important;
}
.header-button-2 .button:hover::before {
  opacity: 1;
}
.header-button-2 .button > * {
  position: relative;
  z-index: 1;
}

/* Header search */
.header-search .search-button {
  color: #fff;
  font-size: 18px;
  padding: 0 10px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.header-search .search-button:hover {
  opacity: 1;
  color: var(--brand-secondary);
}

/* ===== STICKY HEADER ===== */
.header.is-sticky,
.header.stuck {
  background: rgba(10, 31, 61, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.header.is-sticky #masthead,
.header.stuck #masthead {
  min-height: 64px;
}
.header.is-sticky #logo img,
.header.stuck #logo img {
  max-height: 52px;
}
.header.is-sticky .header-nav-main.nav > li > a,
.header.stuck .header-nav-main.nav > li > a {
  padding: 8px 12px !important;
  font-size: 13px;
}
.header.is-sticky .header-button .button,
.header.stuck .header-button .button {
  height: 36px;
  line-height: 36px !important;
  font-size: 12px !important;
  padding: 0 14px !important;
}
.header.is-sticky #top-bar,
.header.stuck #top-bar {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .header-nav-main.nav > li > a {
    padding: 10px 8px !important;
    font-size: 12.5px;
  }
  #logo { width: 180px; }
  #logo img { max-height: 56px; }
}

@media (max-width: 849px) {
  .header-main { padding: 8px 0; }
  #top-bar { display: none; }
  #logo { width: 160px; max-width: 160px; }
  #logo img { max-height: 48px; }
  .header-button-1,
  .header-button-2 {
    display: none !important;
  }
  .header-mobile-elements-right .header-button-mobile-cta {
    display: inline-flex !important;
  }
}

/* ===== DROPDOWN SUB-MENU ===== */
.nav-dropdown {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 215, 0, 0.15);
  background: #0a1f3d;
}
.nav-dropdown-default > li > a {
  color: #fff !important;
  font-weight: 500;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
}
.nav-dropdown-default > li:last-child > a {
  border-bottom: none;
}
.nav-dropdown-default > li > a:hover {
  background: rgba(255, 107, 0, 0.15) !important;
  color: var(--brand-secondary) !important;
  padding-left: 22px;
}

/* ===== ANIMATIONS ===== */
@keyframes shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.header-button-2 .button > span,
.header-button-2 .button {
  background-size: 200% auto;
}

/* ===== MOBILE MENU OVERLAY ===== */
.off-canvas .mfp-content {
  background: linear-gradient(180deg, #0a1f3d 0%, #050d1a 100%) !important;
}
.off-canvas-right .sidebar-menu .nav > li > a {
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.off-canvas-right .sidebar-menu .nav > li > a:hover {
  color: var(--brand-secondary) !important;
  background: rgba(255, 215, 0, 0.05);
}

/* ========================================================
   123B FOOTER - E-E-A-T SEO 2026
   - Hide old Flatsome footer
   - 6-section footer: CTA, Brand, Site Links, Legal
   - Mobile responsive
   ======================================================== */

/* === Hide Old Flatsome Footer === */
footer#footer.footer-wrapper {
    display: none !important;
}

/* === 123B New Footer === */
.footer-123b {
    width: 100%;
    background: linear-gradient(180deg, #0a3d0a 0%, #0d4d0d 100%);
    color: #e8f5e8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-top: 40px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-123b,
.footer-123b * {
    box-sizing: border-box;
}

/* CTA Section */
.footer-cta-123b {
    background: linear-gradient(135deg, #16980d 0%, #0d7a08 100%);
    padding: 50px 20px;
    text-align: center;
    border-bottom: 2px solid #0a6a05;
}

.footer-cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.footer-cta-subtitle {
    font-size: 16px;
    color: #d4f0d4;
    margin: 0 0 28px 0;
    line-height: 1.5;
}

.footer-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-cta-btn-primary {
    background: #ffffff;
    color: #16980d;
    border: 2px solid #ffffff;
}

.footer-cta-btn-primary:hover {
    background: #16980d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer-cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.footer-cta-btn-secondary:hover {
    background: #ffffff;
    color: #16980d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Main Footer */
.footer-main-123b {
    padding: 60px 20px 40px;
    background: #0a3d0a;
}

.footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand-col {
    padding-right: 20px;
}

.footer-brand-logo {
    margin-bottom: 16px;
}

.footer-brand-name {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #c8e6c8;
    margin: 0 0 20px 0;
}

.footer-brand-desc strong {
    color: #ffffff;
}

.footer-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.footer-trust-list li {
    font-size: 13px;
    color: #b8d8b8;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #16980d;
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social-link:hover {
    background: #16980d;
    border-color: #16980d;
    transform: translateY(-1px);
}

/* Links Columns */
.footer-links-col {
    min-width: 0;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #16980d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list a {
    color: #b8d8b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-block;
    padding: 2px 0;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* Legal Section */
.footer-legal-123b {
    background: #062806;
    padding: 30px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-legal-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-legal-links {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-legal-links a {
    color: #d4f0d4;
    text-decoration: none;
    padding: 0 8px;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-legal-sep {
    color: #4a7a4a;
    margin: 0 4px;
}

.footer-copyright {
    font-size: 14px;
    color: #b8d8b8;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.footer-copyright strong {
    color: #ffffff;
}

.footer-disclaimer {
    font-size: 13px;
    color: #95b595;
    line-height: 1.7;
    margin: 0 0 16px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer strong {
    color: #d4f0d4;
}

.footer-license {
    font-size: 12px;
    color: #7a9a7a;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-license strong {
    color: #b8d8b8;
}

.footer-license a {
    color: #d4f0d4;
    text-decoration: none;
}

.footer-license a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-main-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    .footer-trust-list {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-cta-title {
        font-size: 24px;
    }
    .footer-cta-subtitle {
        font-size: 14px;
    }
    .footer-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .footer-main-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .footer-main-123b {
        padding: 40px 20px 30px;
    }
    .footer-legal-links {
        font-size: 13px;
    }
    .footer-legal-links a {
        padding: 0 4px;
    }
    .footer-legal-sep {
        margin: 0 2px;
    }
}

@media (max-width: 480px) {
    .footer-cta-123b {
        padding: 32px 16px;
    }
    .footer-main-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .footer-cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
