/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    line-height: 1.42857143;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'bell-slim' !important;
    font-weight: bolder;
}

.rsx-connector-active-lob a > h3 {
    line-height: 1.1 !important;
    margin-bottom: 0 !important;
}

main {
    font-family: 'bell-slim';
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

section h2,
section h3 {
    font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero a,
.stores a {
    color: white;
    text-decoration: none;
}

.hero a:hover,
.stores a:hover {
    color: white;
    text-decoration: underline;
}

.hero .container,
.features .container,
.support .container,
.reliable .container,
.switch-section .container,
.faq .container,
.stores .container {
    padding: 30px 0;
}

/* Ensure all content sections have consistent width on desktop */
@media (min-width: 968px) {
  .hero .container,
  .features .container,
  .support .container,
  .reliable .container,
  .switch-section .container,
  .faq .container,
  .stores .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
}
/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Federal Bar */
.federal-bar {
  background: #111;
  color: #babec2;
  font-size: 12px;
  text-transform: uppercase;
  min-width: 100%;
}

.federal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 15px;
}

.federal-left,
.federal-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.federal-item {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.federal-item:hover {
  color: #fff;
}

.chevron-down {
  width: 8px;
  height: 8px;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.separator {
  width: 1px;
  height: 14px;
  background: #babec2;
}

/* Primary Navigation */
.primary-nav {
  display: flex;
  min-width: 100%;
  padding: 0px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #00549a;
  width: 100%;
}

.nav-content {
  display: flex;
  max-width: 959px;
  padding: 5px 0px;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  justify-content: space-between;
  width: 100%;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: #a8cdff;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: white;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.icon {
  width: 20px;
  height: 20px;
  color: white;
  cursor: pointer;
}

.login-btn {
  padding: 5px 15px;
  border: 2px solid #d6dce7;
  border-radius: 1000px;
  background: transparent;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: white;
  color: #00549a;
}

/* Hero Section */
.hero {
  padding: 60px 0;
  background: #f4f4f4;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 900;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-cta {
  padding-top: 30px;
}

.btn-primary {
  background: #003778;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 1000px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #002856;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: scale-down;
  border-radius: 10px;
}

/* Features Section */
.features {
  padding: 60px 0;
  background: white;
}

.features-header {
  text-align: center;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.features-header h2 {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.features-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    flex-wrap: wrap;
    align-content: flex-start;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(17, 17, 17, 0.1);
  border: none;
}

.feature-icon svg {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #00549a;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
  margin-bottom: 16px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00549a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.feature-link:hover {
  color: #003d73;
}

.chevron-right {
  width: 12px;
  height: 12px;
}

/* Support Section */
.support {
  padding: 60px 0;
  background: #f4f4f4;
}

.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.support-text h2 {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.support-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.4;
  margin-bottom: 24px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00549a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: #003d73;
}
.support-content{
  justify-content: center;
  align-items: center;
}
.support-image img {
  width:  100%;
  flex-shrink: 0;
  justify-content: center;
  object-fit: cover;
  border-radius: 10px;
}

/* Reliable Section */
.reliable {
  padding: 60px 0;
  background: white;
}

.reliable-content {
  text-align: center;
  margin: 0 auto;
}

.reliable-content h2 {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.reliable-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.4;
}

/* Switch Section */
.switch-section {
  padding: 60px 0;
  background: #00549a;
  color: white;
}

.switch-header {
  text-align: center;
  color: white;
}

.switch-header h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: white;
}

.switch-header p {
  font-size: 18px;
  color: #a8cdff;
  color: white;
}

.switch-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  color: white;
}

.switch-feature {
  text-align: center;
  padding: 30px;
}

.switch-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
}

.switch-feature h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

.switch-cta {
  text-align: center;
}

.switch-section .btn-primary {
    background: white;
    color: #00549A;
    text-decoration: none;
}

.switch-section .btn-primary:hover {
  background: white;
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  padding: 60px 0;
  background: #f4f4f4;
}

.faq h2 {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.accordion {
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #e1e1e1;
  padding: 15px 0;
}

.accordion-header-container {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.accordion-header {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  flex: 1;
  display: flex;
  align-items: center;
}

.accordion-question {
  font-family:BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #00549a;
  line-height: 18px;
  transition: color 0.3s ease;
}

.accordion-header:hover .accordion-question {
  color: #003d73;
}

.accordion-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
}

.accordion-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  border-radius: 50%;
  border: 1.5px solid #00549a;
  background: transparent;
  transition: all 0.3s ease;
}

.accordion-icon-container:hover {
  background: #00549a;
}

.accordion-icon-container:hover .accordion-plus-icon,
.accordion-icon-container:hover .accordion-minus-icon {
  fill: white;
}

.accordion-plus-icon,
.accordion-minus-icon {
  transition: fill 0.3s ease;
}

.accordion-plus-icon {
  width: 12px;
  height: 12px;
  fill: #00549a;
}

.accordion-minus-icon {
  width: 12px;
  height: 2px;
  fill: #00549a;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-top: 0;
}

.accordion-content.expanded {
  max-height: 300px;
  padding-top: 10px;
}

.accordion-content p {
  font-family:BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  color: #555;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin: 0;
}

/* Active state styles */
.accordion-item.active .accordion-icon-container.minus {
  background: transparent;
}

.accordion-item.active .accordion-minus-icon {
  fill: #00549a;
}

/* Default collapsed state */
.accordion-item:not(.active) .accordion-content {
  max-height: 0;
  padding-top: 0;
}

.accordion-item:not(.active) .accordion-plus-icon {
  fill: #00549a;
}

/* Store Locations */
.stores {
  padding: 60px 0;
  background: white;
}

.stores-header {
  text-align: center;
  margin-bottom: 60px;
}

.stores-header h2 {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.stores-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.4;
  margin: 0 auto 32px;
}

.stores-card {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
}

.stores-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
}

.store-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-icon-group {
  display: flex;
  padding: 1px;
  align-items: flex-start;
}

.store-arrow-icon {
  display: flex;
  min-width: 16px;
  max-width: 16px;
  min-height: 16px;
  max-height: 16px;
  padding-left: 1.5px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1.5px solid #00549a;
  background: transparent;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.store-arrow-icon:hover {
  background: #00549a;
}

.store-arrow-icon:hover svg path {
  fill: white;
}

.store-arrow-icon svg {
  width: 4.5px;
  height: 6px;
}

.store-arrow-icon svg path {
  fill: #00549a;
  transition: fill 0.3s ease;
}

.store-item a {
  color: #00549a;
  text-decoration: none;
  font-family:BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  transition: color 0.3s ease;
}

.store-item a:hover {
  color: #003d73;
}

/* Footer */
.footer {
  background: #f4f4f4;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #00549a;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #003d73;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border: 2px solid #00549a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  color: #00549a;
}

.contact-item a {
  color: #00549a;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #003d73;
}

.footer-bottom {
  border-top: 1px solid #e1e1e1;
  padding-top: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 24px;
}

.accessibility-btn {
  padding: 10px 30px;
  border: 2px solid #d6dce7;
  border-radius: 1000px;
  background: transparent;
  color: #003778;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accessibility-btn:hover {
  background: #003778;
  color: white;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  width: 20px;
  height: 20px;
  color: #00549a;
}

.social-separator {
  width: 1px;
  height: 20px;
  background: #e1e1e1;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #555;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-separator {
  width: 1px;
  height: 16px;
  background: #8d8d8d;
}

.footer-legal a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
      display: flex;
    flex-direction: row-reverse;
  }
  .hero-content .hero-text,
  .hero-content .hero-image {
    width: 50%;
  }
  .hero-content,
  .support-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image,
  .support-image {
    order: -1;
  }
  .support .container .support-content{
    display: flex;
    flex-direction: column-reverse
  }
  
  .support-image {
    display: flex;
    justify-content: center;
    text-align: center;
    order: -1;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }
}

/* Additional styles for very small mobile screens - 480px and below */
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
@media (max-width: 992px) {
    main section {
        padding: 0px 30px !important;
    }
}
/* Tablet View - 768px */
@media (max-width: 768px) {

  .container {
    padding: 0 0px;
    max-width: 959px;
  }

  /* Hide federal bar on tablet */
  .federal-bar {
    display: none;
  }

  /* Primary navigation adjustments for tablet */
  .primary-nav {
    min-width: 768px;
    padding: 0 30px;
  }

  .nav-content {
    padding: 5px 0;
    gap: 30px;
  }

  /* Hide full navigation menu and login button on tablet */
  .nav-links {
    display: none;
  }

  .login-btn.desktop-only {
    display: none;
  }

  /* Show hamburger menu on tablet */
  .mobile-menu-btn {
    display: flex !important;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    fill: white;
  }

  /* Hero section adjustments */
  .hero {
    display: flex;
    height: 440px;
    padding: 0 30px;
    justify-content: center;
    align-items: flex-end;
    background: #fff;
    box-shadow: 0px 0px 80px 30px rgba(17, 17, 17, 0.05) inset;
  }

  .hero .container {
    display: flex;
    height: 425px;
    max-width: 959px;
    align-items: center;
    flex: 1 0 0;
    padding: 30px 0;
  }

  .hero-content {
    display: flex;
    height: 425px;
    max-width: 959px;
    align-items: center;
    flex: 1 0 0;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    background: #fff;
    order: 1;
  }

  .hero-text h1 {
    align-self: stretch;
    color: #111;
    font-family:
      BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 38px;
    letter-spacing: -0.6px;
    margin-bottom: 0;
  }

  .hero-text p {
    align-self: stretch;
    color: #555;
    font-family:BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0;
  }

  .hero-cta {
    display: flex;
    padding-top: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .hero-cta .btn-primary {
    display: flex;
    padding: 10px 30px;
    align-items: center;
    gap: 10px;
    border-radius: 1000px;
    background: #003778;
    color: #fff;
    font-family:BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    border: none;
    cursor: pointer;
  }

  .hero-image {
    display: flex;
    height: 425px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    flex: 1 0 0;
    order: 2;
  }

  .hero-image img {
    height: 242.65px;
    flex-shrink: 0;
    align-self: stretch;
    aspect-ratio: 316.5/242.65;
  }

  /* Features section */
  .features {
    padding: 60px 30px;
  }

  .features-content {
    flex: 1;
    padding: 15px 0 30px 0;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    flex-wrap: wrap;
    align-content: flex-start;
    padding-top: 30px;
  }

  .feature-card {
    flex: 1 0 0;
    min-width: 150px;
  }

  /* Support section */
  .support {
    padding: 60px 30px;
  }

  .support-content {
    flex-direction: column;
    gap: 60px;
    flex: 1;
  }

  .support-image {
    width: 560px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
  }

  /* Reliable section */
  .reliable {
    padding: 60px 30px;
  }

  .reliable-content {
    flex: 1;
    padding: 15px 0;
  }

  /* Switch section */
  .switch-section {
    padding: 60px 30px;
  }

  .switch-header {
    padding: 15px 0 60px 0;
  }

  .switch-features {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 30px 0;
  }

  .switch-feature {
    flex: 1 0 0;
    min-width: 150px;
  }

  /* FAQ section */
  .faq {
    padding: 60px 30px;
  }

  .faq .container {
    padding-top: 30px;
  }

  /* Store locations */
  .stores {
    padding: 60px 30px;
  }

  .stores-content {
    flex: 1;
  }

  /* Footer */
  .footer {
    padding: 0 30px;
  }

  .footer-content {
    max-width: 959px;
    gap: 30px;
  }

  .footer-bottom {
    max-width: 959px;
  }

  .footer-bottom-content {
    max-width: 959px;
  }
}

/* Hero and Support mobile layout for screens up to 967px */
@media (max-width: 967px) {
  .container {
    padding: 0 20px;
    max-width: 100%;
  }

  .hero-content .hero-text,
  .hero-content .hero-image {
    width: 100%;
    background: transparent !important;
  }

  /* Hide federal bar */
  .federal-bar {
    display: none;
  }

  /* Navigation adjustments */
  .primary-nav {
    padding: 0 20px;
  }

  .nav-content {
    padding: 15px 0;
    gap: 20px;
  }

  /* Hide full navigation menu and login button */
  .nav-links {
    display: none;
  }

  .login-btn.desktop-only {
    display: none;
  }

  /* Show hamburger menu */
  .mobile-menu-btn {
    display: flex !important;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
    background: white;
    fill: white;
  }
  /* Hero section mobile layout */
  .hero {
    padding: 40px 0;
    height: auto;
    background: transparent;
    box-shadow: none;
  }

  .hero .container {
    max-width: 100%;
    height: auto;
  }

  .hero-content {
    height: auto;
  }

  .hero-text {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
  }

  .hero-text h1 {
    align-self: stretch;
    color: #111;
    font-family:
      BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
    letter-spacing: -0.4px;
    margin-bottom: 0;
  }

  .hero-text p {
    align-self: stretch;
    color: #555;
    font-family:BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 0;
  }

  .hero-cta {
    display: flex;
    padding-top: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .hero-cta .btn-primary {
    display: flex;
    padding: 10px 30px;
    align-items: center;
    gap: 10px;
    border-radius: 1000px;
    background: #003778;
    color: #fff;
    font-family:BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
  }

  .hero-image {
    order: 1;
    height: auto;
    max-width: 100%;
  }

    .hero-image img {
        height: 242.65px;
        flex-shrink: 0;
        align-self: stretch;
        aspect-ratio: 316.5/242.65;
    }

  /* Support section mobile layout */
  .support {
    display: flex;
    padding: 30px 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: #f4f4f4;
  }

  .support .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex: 1 0 0;
  }

  .support-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
  }

  .support-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
  }

  .support-text h2 {
    align-self: stretch;
    color: #111;
    font-family:
      BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: -0.4px;
    margin-bottom: 0;
  }

  .support-text p {
    align-self: stretch;
    color: #555;
    font-family: BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0px;
    margin-bottom: 0;
  }

  .support-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00549a;
    font-family: BellSlim,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
  }

  .support-image {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
    border-radius: 10px;
  }


    .support-image img {
        max-height: 429.333px;
        min-height: 222.333px;
        align-self: stretch;
        aspect-ratio: 290.00/222.33;
    }
}

@media (min-width: 480px) {
    section .hero-content {
        min-height: 425px;
    }
}
/* Mobile View - 480px and below */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
    max-width: 100%;
  }

  /* Hide federal bar on mobile */
  .federal-bar {
    display: none;
  }

  /* Header adjustments */
  .nav-content {
    padding: 15px 0;
    gap: 20px;
  }

  .nav-links {
    display: none;
  }

  .login-btn.desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  /* Features section */
  .features {
    padding: 40px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-header h2 {
    font-size: 22px;
    line-height: 24px;
  }

  .features-header p {
    font-size: 16px;
    line-height: 18px;
  }

  /* Support section */
  .support {
    padding: 40px 20px;
  }

  .support-content {
    flex-direction: column;
    gap: 30px;
  }

  .support-text h2 {
    font-size: 20px;
    line-height: 24px;
  }

  /* Reliable section */
  .reliable {
    padding: 40px 20px;
  }

  .reliable-content {
    flex-direction: column;
    gap: 30px;
  }

  .reliable-content h2 {
    font-size: 20px;
    line-height: 24px;
  }

  /* Switch section */
  .switch-section {
    padding: 40px 20px;
  }

  .switch-header {
    padding: 0 0 30px 0;
  }

  .switch-header h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .switch-features {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
  }

  .switch-feature {
    min-width: 100%;
    padding: 20px;
  }

  /* FAQ section */
  .faq {
    padding: 40px 20px;
  }

  .faq h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .accordion {
    max-width: 100%;
  }

  .accordion-header-container {
    gap: 20px;
  }

  /* Store locations */
  .stores {
    padding: 40px 20px;
  }

  .stores-header h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .stores-content {
    padding: 20px;
  }

  /* Footer */
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* Typography adjustments */
  .btn-primary {
    font-size: 14px;
    padding: 8px 24px;
  }

  h3 {
    font-size: 16px;
    line-height: 20px;
  }

  p {
    font-size: 16px !important;
    line-height: 18px;
  }
    .accordion-content p {
        font-size: 12px !important;
    }
}

@media (max-width: 968px) {
  .rsx-connector-nav {
    width: 100%;
      -webkit-transform: translateX(-110%);
      -ms-transform: translateX(-110%);
      transform: translateX(-110%);
  }
}

@media (max-width:999px) {
    .rsx-connector > .container{
        width: 100% !important;
    }
    .rsx-page-content {
        padding: 0 !important;
    }
}

footer .bhp-skip-to-main {
    display: inline-block;
    padding: 7px 12px;
    position: absolute;
    left: -300px;
    text-decoration: underline;
    border-bottom-right-radius: 8px;
    transition: left .3s ease-out;
    background-color: #e1e1e1;
    z-index: 3000;
    font-size: 13px;
    color: #00549a;
}

    footer .bhp-skip-to-main:focus {
        left: 0;
        color: #00549a !important;
    }


header .bhp-skip-to-main-link:focus {
    top: 0;
    outline-color: #fff;
}

footer .bhp-skip-to-main-link:focus {
    left: 0;
    color: #00549a;
    outline-color: #fff;
}

.bhp-footer {
    font-family: Helvetica,Arial,sans-serif;
    background-color: #f4f4f4;
}

    .bhp-footer *:focus {
        outline-color: #fff;
    }

.bhp-footer--home {
    background-color: #00549a;
    color: #fff;
}

.bhp-footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.bhp-footer-links-title > span,
.bhp-footer-links-title > button {
    font-size: 18px;
    color: #111;
    margin: 0;
    padding: 22px 0;
    line-height: 1;
    font-weight: bold;
    position: relative;
    margin: 0;
    background-color: transparent;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
}

.bhp-footer--home .bhp-footer-links-title > span,
.bhp-footer--home .bhp-footer-links-title > button {
    color: #fff;
}

.bhp-footer--home .bhp-button--outline {
    border-color: #fff;
}

    .bhp-footer--home .bhp-button--outline:hover,
    .bhp-footer--home .bhp-button--outline:focus {
        background-color: #3376ae;
    }

.bhp-footer-links-title > button + span {
    display: none;
}

.bhp-footer-links-title > button {
    padding-right: 50px;
    position: relative;
}

    .bhp-footer-links-title > button:before {
        border-style: solid;
        border-width: 1px 1px 0 0;
        content: '';
        display: inline-block;
        height: 8px;
        position: absolute;
        top: 32px;
        vertical-align: top;
        width: 8px;
        right: 5px;
        transform: rotate(-45deg);
        border-color: rgb(0,0,0);
    }

.bhp-footer--home .bhp-footer-links-title > button:before {
    border-color: #fff;
}

.bhp-footer-links-title > button[aria-expanded="false"]:before {
    top: 28px;
    right: 5px;
    transform: rotate(135deg);
}

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

    .bhp-footer-links a,
    .bhp-footer-links button {
        text-decoration: none;
        display: block;
        width: 100%;
        text-align: left;
        margin-bottom: 8px;
        position: relative;
        background-color: transparent;
        border: none;
        padding-left: 0;
    }

    .bhp-footer-links li:first-child a {
        margin-top: 5px;
    }

    .bhp-footer-links li:last-child a {
        margin-bottom: 15px;
        position: relative;
        min-height: 30px;
    }

    .bhp-footer-links a:hover,
    .bhp-footer-links a:focus,
    .bhp-footer-links button:hover,
    .bhp-footer-links button:focus,
    .bhp-footer-links a:hover .bhp-footer-links-text,
    .bhp-footer-links a:focus .bhp-footer-links-text {
        text-decoration: underline;
    }

        .bhp-footer-links a:hover .bhp-footer-links-icon svg,
        .bhp-footer-links a:focus .bhp-footer-links-icon svg,
        .bhp-footer-social-links a:hover svg,
        .bhp-footer-social-links a:focus svg {
            fill: #b3c4d8;
        }

        .bhp-footer-links a:hover .bhp-footer-links-icon,
        .bhp-footer-links a:focus .bhp-footer-links-icon {
            border-color: #b3c4d8;
        }

.bhp-footer.bhp-footer--home .bhp-footer-social-links a:hover,
.bhp-footer.bhp-footer--home .bhp-footer-social-links a:focus {
    color: #b3c4d8;
}

.bhp-footer-links-section {
    border-bottom: 1px solid #d4d4d4;
}

.bhp-footer-links-section--icons .bhp-footer-links a {
    margin-bottom: 15px;
}

.bhp-footer-links-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #00549a;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    vertical-align: middle;
}

.bhp-footer--home .bhp-footer-links-icon {
    border-color: #fff;
}

.bhp-footer-links-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    padding-top: 5px;
    padding-left: 30px;
}

.bhp-footer.bhp-footer--home a,
.bhp-footer.bhp-footer--home a {
    color: #fff;
}

.bhp-footer--home .bhp-footer-links-text,
.bhp-footer--home .bhp-footer-links a,
.bhp-footer--home .bhp-footer-links button {
    color: #fff;
}

.bhp-footer-links-icon svg {
    width: 18px;
    height: 18px;
    fill: #00549a;
    position: absolute;
    top: 4px;
    left: 4px;
}

.bhp-footer-links-appt .bhp-footer-links-icon svg {
    width: 16px;
    height: 16px;
    top: 5px;
    left: 5px;
}

.bhp-footer.bhp-footer--home svg,
.bhp-footer.bhp-footer--home svg {
    fill: #fff;
}

.bhp-footer-social ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

    .bhp-footer-social ul li {
        position: relative;
        width: 100%;
        text-align: center;
    }

        .bhp-footer-social ul li:after {
            content: "";
            display: block;
            position: absolute;
            width: 1px;
            height: 25px;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
            background-color: #d4d4d4;
        }

.bhp-footer--home .bhp-footer-social ul li:after {
    background-color: #3c79b0;
}

.bhp-footer-social ul li:last-child::after {
    display: none;
}

.bhp-footer-social ul a {
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
}

.bhp-footer-social-blog a {
    content: "Blog";
    font-family: 'bell-slim-black';
    line-height: 26px;
    letter-spacing: -.5px;
    font-style: normal;
    text-decoration: none;
    font-size: 20px;
    text-decoration: none;
    text-transform: capitalize;
}

.bhp-footer-social svg {
    width: 21px;
    height: 24px;
    fill: #00549a;
}

.bhp-footer-social-accessibility-mobile {
    margin-top: 5px;
}

.bhp-footer-social-accessibility-desktop {
    margin-top: 5px;
    display: none;
}

.bhp-footer-copyright {
    font-size: 12px;
    padding: 20px 0 30px;
}

    .bhp-footer-copyright > span {
        display: block;
        margin-bottom: 6px;
    }

    .bhp-footer-copyright a,
    .bhp-footer-copyright button {
        text-decoration: none;
        color: #555;
        background-color: transparent;
        border: none;
        padding: 0;
        margin: 0;
    }

.bhp-footer--home .bhp-footer-copyright button {
    color: #fff;
}

.bhp-footer--home .bhp-footer-links-section {
    border-color: #3c79b0;
}

.bhp-footer-copyright a:hover,
.bhp-footer-copyright a:focus {
    text-decoration: underline;
}

.bhp-footer-copyright button:hover > span,
.bhp-footer-copyright button:focus > span {
    text-decoration: underline;
}

.bhp-footer-copyright a {
    border-left: 1px solid #d4d4d4;
    padding-left: 10px;
    margin-left: 10px;
    border-right: 1px solid #d4d4d4;
    padding-right: 10px;
    margin-right: 10px;
}


@media (min-width: 768px) {

    bhp-browser-msg .container {
        margin-bottom: 30px;
    }

    .bhp-browser-msg-title {
        font-size: 20px;
        font-weight: bold;
    }

    .bhp-footer > .container {
        padding-top: 25px;
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .bhp-footer-links {
        border-bottom: none;
        max-height: initial;
        overflow: visible;
    }

    .bhp-footer-links-wrap {
        display: flex;
        width: 100%;
    }

    .bhp-footer-links-section {
        width: 25%;
    }

        .bhp-footer-links-section li {
            padding-right: 15px;
        }

        .bhp-footer-links-section.bhp-footer-links-section--icons li {
            padding-right: 0;
        }

    .bhp-footer-links-section--double {
        width: 50%;
    }

        .bhp-footer-links-section--double ul {
            height: 145px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }

            .bhp-footer-links-section--double ul > li {
                width: 50%;
            }


    .bhp-footer-links-title > button {
        display: none;
    }

        .bhp-footer-links-title > button + span {
            display: block;
        }

    .bhp-footer-social {
        display: flex;
    }

    .bhp-footer-social-links {
        margin-top: 10px;
    }

        .bhp-footer-social-links a {
            padding: 0 15px;
        }

    .bhp-footer-social-accessibility-desktop {
        display: block;
        flex-grow: 1;
    }

        .bhp-footer-social-accessibility-desktop a {
            margin-top: 20px;
        }

    .bhp-footer-social-accessibility-mobile {
        display: none;
    }

    .bhp-footer-copyright span {
        display: inline-block;
    }

    .bhp-footer-copyright button {
        padding-left: 10px;
        margin-left: 10px;
        border-left: 1px solid #d4d4d4;
    }

    .bhp-cxp-name,
    .bhp-cxp-subtitle {
        margin-left: 30px;
        margin-right: 30px;
    }

    .modal__container {
        max-width: 645px;
        max-height: 100vh;
        border-radius: 10px;
        overflow-y: auto;
        box-sizing: border-box;
        position: relative;
        top: auto;
        left: auto;
    }

    .modal__header {
        padding-left: 30px;
        padding-right: 30px;
    }

    .modal__content {
        padding: 30px;
    }
}

@media (min-width: 768px) and (max-width: 845px) {
    html:lang(fr) .bhp-footer-links-section--double ul {
        height: 170px;
    }

}


@media (min-width: 992px) {
    main .bhp-notification .container,
    main .bhp-offers.bhp-container,
    main .bhp-cards-bfb .bhp-container,
    main .bhp-email-banner .bhp-container,
    main .bhp-accordion .bhp-container,
    footer.bhp-footer > .container {
        padding-right: 0;
        padding-left: 0;
    }
}


.bhp-footer-social-links ul li a.social-tip:focus span {
    display: block;
    position: absolute;
    top: 65px;
    left: -5px;
    color: #626562;
    background-color: #ffffe7;
    font-family: Helvetica,Arial,sans-serif;
    font-size: 12px;
    z-index: 24;
    padding: 2px 5px 2px 5px;
    white-space: pre;
    line-height: 18px;
}

.bhp-footer-copyright ul li {
    display: inline-block;
}

.bhp-footer-copyright ul {
    list-style: none;
    display: inline-block;
    padding-left: 0px;
}

@media (max-width:768px) {
    ul#footerLinksSectionAbout li a, ul#footerLinksSectionAbout li button, ul#footerLinksSectionResources li a, ul#footerLinksSectionResources li button {
        outline-offset: -1.5px;
    }

    ul#footerLinksSectionContact li a {
        min-height: 30px;
    }

    .bhp-footer-links-toggle:focus {
        outline-offset: -2.5px;
    }

    .sv-outage-section .custom-message-wrap .bhp-notification-close {
        top: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        flex-direction: column;
    }

    main section {
        padding: 0px 15px !important;
    }
}