footer {
    background-color: #f8f9fb;
}

footer a {
    color: #0a1f44 !important;
    text-decoration: none;
}

footer .main-container {
    flex-wrap: wrap;
    flex-direction: row;
    gap: clamp(1rem, 5vw, 5rem);
    padding: 2.25rem clamp(1rem, 5vw, 5rem) 2.88rem  clamp(1rem, 5vw, 5rem);
    color: #0a1f44 !important;
}

footer .left-section {
    flex-wrap: wrap;
}

footer .social-icons {
    height: 2rem;
}

footer .column-gap {
    gap: 1rem;
}

footer .footer-column {
    padding-top: 1.5rem;
}

footer .footer-column a {
    font-family: Helvetica;
    font-size: 0.875rem;
    font-weight: 400;
}

footer .connect.footer-column {
    align-items: flex-start;
}

footer .bottom-container {
    color:#0a1f44 !important;
    padding: 0rem  clamp(1rem, 5vw, 5rem) 2.94rem  clamp(1rem, 5vw, 5rem);
}

footer .app-store {
    width: 7rem;
    border-radius: 0.5rem;
}

@media (min-width: 805px) {
    footer .connect.footer-column {
        align-items: flex-end;
    } 
}

.fnf-footer {
    position: sticky;
    z-index: 1031;
}

.promo-card {
  display: flex;
  align-items: flex-start;
  border-radius: 16px;
  overflow: hidden;
  height: 15.1875rem;
  background-color: #1C2351;
  max-width: 600px;
  margin: auto;
}

/* Left column image */
.promo-img-container {
  width: 19.0625rem;
  height: 15.1875rem;
  flex-shrink: 0;
  object-fit: cover;
  display: flex;
  align-items: stretch;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right column content */
.promo-content {
  flex: 1;
  padding-left: 7.19rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-content h2 {
  padding-top: 2.75rem;
  color: #FFF;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
}

.promo-content p {
  color: #FFF;
  font-size: 16px;
  line-height: 1.375rem;
  padding-top: 1rem;
  padding-bottom: 2.5rem;
  margin: 0;
}

.promo-content a button {
  display: flex;
  height: 2.8125rem;
  min-width: 8.75rem;
  padding: 0.875rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 2rem;
  background: #056FBE;
  color: #FFF;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.035rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

/* --- MOBILE STYLES --- */
@media (max-width: 700px) {
  .promo-card {
    flex-direction: column;
    height: auto;
    max-width: 100%;
  }

  .promo-img-container {
    width: 100%;
    height: 200px;
    min-height: 0;
  }

  .promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .promo-content {
    padding: 1.5rem;
    text-align: left;
  }

  .promo-content h2 {
    padding-top: 1rem;
    font-size: 20px;
    line-height: 28px;
  }
  .promo-content p {
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
    font-size: 15px;
  }
}