@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 200;
    src: url('fonts/Sofia Pro UltraLight Az.woff') format('woff');
}

@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/Sofia Pro Light Az.woff') format('woff');
}

@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Sofia Pro Regular Az.woff') format('woff');
}

@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/Sofia Pro Medium Az.woff') format('woff');
}

@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/Sofia Pro Semi Bold Az.woff') format('woff');
}

@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/Sofia Pro Bold Az.woff') format('woff');
}

@font-face {
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 900;
    src: url('fonts/Sofia Pro Black Az.woff') format('woff');
}

html,
body {
  font-family: 'Sofia Pro', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
}

.main-layout {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.brand-logo{
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.mobile-store-logo {
  height: 40px;
}


.main-content-container{
    text-align: center;
    padding: 40px 25px;
    background: #FAFAFC;
}

h1.site-message {
  font-size: 28px;
  font-weight: 500;
  color: #3b1a6e;
  margin: auto;
  vertical-align: middle;
}

header {
  background-color: #ffffff;
}

div.nav-container {
  width: 100%;
  margin: auto;
}

.custom-footer {
  background-color: #101323;
  border-radius: 40px 40px 0 0;
  padding: 105px 0;
  color: #fff;
  font-size: 16px;
  height: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.logo-section {
    flex: 0 0 180px;
    margin-bottom: 20px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.logo-text {
  font-family: 'Sofia Pro', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
}

.menu-section {
  flex: 1;
  margin-bottom: 20px;
}

.horizontal-menu {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.horizontal-menu li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.horizontal-menu img {
  margin-right: 8px;
  max-width: 20px;
  height: auto;
}

.horizontal-menu li a {
  color: #ffffff;
  text-decoration: none;
}

.link-columns {
    display: flex;
    flex: 0 0 280px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    margin-left: auto;
}

.link-column ul {
  list-style: none;
  padding-left: 0;
}

.link-column ul li {
  margin-bottom: 8px;
}

.link-column ul li a {
  color: #b3b9c1;
  text-decoration: none;
  font-size: 13px;
}

.link-column ul li a:hover {
  text-decoration: underline;
}

.footer-separator {
  border-color: #5a5a5a;
  margin: 30px 0;
}

.text-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  margin-right: 40px;
}

.text-column p {
  font-size: 13px;
  line-height: 1.5;
  color: #b3b9c1;
  margin-bottom: 15px;
}

.text-column p:last-child {
  margin-bottom: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    height: 100px;
}
.navbar-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu,
.sub-menu-items {
  display: flex;
  align-items: center;
}

.navbar-menu li,
.sub-menu-items li {
  margin-left: 30px;
}

.navbar-menu a {
  color: #3b1a6e;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-menu a:hover {
  color: #000;
  /* Change color on hover */
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

.hamburger-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Default state - show List icon, hide X icon */
.hamburger-list {
    opacity: 1;
    transform: rotate(0deg);
}

.hamburger-close {
    opacity: 0;
    transform: rotate(90deg);
}

/* Active state - hide List icon, show X icon */
.hamburger-menu.active .hamburger-list {
    opacity: 0;
    transform: rotate(-90deg);
}

.hamburger-menu.active .hamburger-close {
    opacity: 1;
    transform: rotate(0deg);
}

.sub-menu-items {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  background-color: #f4f6f9;
  height: 100%;
  padding: 0 15px;
}

.sub-menu-items li {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.sub-menu-items .icon {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}

.sub-menu-items .sales-item span {
  margin-right: 5px;
}
.home-banner-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.home-banner-image {
    width: 100%;
    height: auto;
}
.home-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

.home-banner-text-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 50%;
    padding-left: 20px;
    color:#ffffff;
}

.home-banner-welcome-text {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color:#c8b8e0;
}

.home-banner-title-text {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}

.home-banner-description {
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    color: #c8b8e0;
}

.home-iphone-banner-image {
    width: 45%;
    height: auto;
    object-fit: contain;
}
.content-header {
  font-family: "Sofia Pro", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 60px;
  text-align: center;
  margin: 0;
  padding-bottom: 20px;
  color: #231f20;
}

.content-paragraph {
  font-family: "Sofia Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #5f5a5b;
  line-height: 36px;
  text-align: center;
  margin: 0;
  padding: 0 20px;
}

/* Card Section */
.card-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px auto;
    width: 90%;
    max-width: 1200px;
}

.card {
    display: flex;
    flex-direction: row;
    min-height: 200px;
    background-color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.card-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.card-content-column {
    flex: 1;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-image {
    width: auto;
    height: auto;
    object-fit: contain;
    max-width: 280px;
    max-height: 180px;
}

.mastercard-image {
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(0.85);
    width: 250px;
}

.card-title {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #2c2c2c;
    line-height: 1.3;
}

.card-link-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.manage-text {
    color: #1C355E;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.card:hover .arrow-icon {
    transform: translateX(3px);
}

.card:hover .manage-text {
    color: #3B1A6E;
}

.card-image-container {
  flex-shrink: 0;
  max-width: 40%;
  overflow: hidden;
}
.card-content {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-header {
  font-family: "Sofia Pro", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 25px 0;
}

.manage-card {
  display: flex;
  align-items: center;
  gap: 8px;
}

.manage-text {
  font-family: "Sofia Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c355e;
}

/* Bottom Card Section - Unique styling for MyPrepaidCenter/FTC cards */
.bottom-card-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px auto;
    width: 90%;
    max-width: 1200px;
}

.bottom-card {
    display: flex;
    flex-direction: row;
    min-height: 200px;
    background-color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

.bottom-card:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.bottom-card-image-column {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.bottom-card-content-column {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bottom-card-image {
    width: auto;
    height: auto;
    object-fit: contain;
    max-width: 280px;
    max-height: 180px;
}

.bottom-card-title {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #2c2c2c;
    line-height: 1.3;
}

.bottom-card-link-section {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bottom-manage-text {
    color: #1C355E;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.bottom-arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.bottom-card:hover .bottom-arrow-icon {
    transform: translateX(3px);
}

.bottom-card:hover .bottom-manage-text {
    color: #3B1A6E;
}

.rounded-section {
    background-color: #3B1A6E;
    margin: 40px auto;
    border-radius: 40px;
    padding: 40px;
    box-sizing: border-box;
    color: #ffffff;
    text-align: center;
}
.rounded-section img {
  max-width: 100%;
  height: auto;
}

.bottom-rounded-section {
    background-color:#EEF0F3;;
    margin: 40px auto;
    border-radius: 40px;
    padding: 40px 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-align: center;
}

.rounded-section-header {
  font-family: "Sofia Pro", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 60px;
  margin-bottom: 20px;
}

.rounded-section-paragraph {
  font-family: "Sofia Pro", sans-serif;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 40px;
}

.image-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.rounded-section-image {
  width: 20%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.bordered-section {
  border: 1px solid #7467b9;
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}

.bordered-section-header {
  font-family: "Sofia Pro", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #ffffff;
}

.bordered-section-paragraph {
  font-size: 15px;
  line-height: 27px;
  color: #ffffff;
}

.header-with-tooltip {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.info-icon {
  margin-left: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.tooltip-container {
  position: relative;
}

.tooltip-bubble {
  visibility: hidden;
  background-color: #ffffff;
  color: #565252;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  width: 400px;
}

.tooltip-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.tooltip-container.show .tooltip-bubble {
  visibility: visible;
  opacity: 1;
}

.tooltip-container.show .tooltip-bubble {
  visibility: visible;
  opacity: 1;
}

/* Contactless page styles */
.contactless-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 20px;
}

.contactless-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
}

.contactless-message {
  flex: 1;
  text-align: left;
  color: white;
}

.contactless-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.contactless-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.fallback-message {
  font-size: 1rem;
  margin-top: 20px;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #fff;
}

.contactless-phone-image {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile responsive for contactless page */
@media (max-width: 768px) {
  .contactless-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .contactless-message {
    text-align: center;
  }

  .contactless-title {
    font-size: 2rem;
  }

  .contactless-phone-image {
    max-width: 250px;
  }

  .loading-spinner {
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .contactless-container {
    padding: 20px 15px;
  }

  .contactless-title {
    font-size: 1.5rem;
  }

  .contactless-description {
    font-size: 1rem;
  }

  .contactless-phone-image {
    max-width: 200px;
  }
}

/* Visa Tap Page Styles */
.container {
    max-width: 1040px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

.visa-tap-banner {
    color: #333;
    padding-top: 100px;
    padding-bottom: 35px;
}

.visa-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.visa-banner-text {
    flex: 0 0 66%;
}

.visa-banner-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 0;
    color: #000;
    line-height: 1.4;
}

.visa-banner-title sup {
    font-size: 0.5em;
    vertical-align: super;
    position: relative;
    top: -0.3em;
}

.visa-banner-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    padding-right: 10px
}

.visa-banner-image {
    flex: 0 0 34%;
    text-align: right;
}

.visa-tap-card-image {
    max-width: 285px;
    height: auto;
}

/* How to Use Section */
.how-to-use-background {
    background-color: #3B1A6E;
    margin: 40px 0px 0px 0px; 
    border-radius: 50px;
}

.section-title {
    text-align: left;
    font-size: 40px;
    color: #000;
    font-weight: 600;
    line-height: 48px;
}

.how-to-use-section{
    padding-top: 25px;
    padding-bottom: 70px;
}

.how-to-use-section-title{
    text-align: center;
    font-size: 40px;
    color: #fff;
    font-weight: 600;
}

.usage-columns {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.usage-column {
    flex: 1;
    text-align: left;
    background-color: white;
    border-radius: 30px;
}

.usage-icon {
    background-color: #EEF0F3;
    padding: 30px 29.7px 10px 29.7px;
    border-radius: 30px 30px 0 0;
}

.usage-img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.usage-text {
    padding:10px 29.7px 30px 29.7px;
}

.usage-column h3 {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.usage-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

/* FAQ Section */
.faq-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.faq-list {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: none;
}

.faq-question {
    padding: 20px 0;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: none;
    border-top: 1px solid #e0e0e0;
}

.faq-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #000;
}

.faq-caret {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 0 20px 0;
    display: none;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
}

/* Terms and Conditions Section */
.terms-section {
    margin-top: 40px;
    margin-bottom: 100px;
}

.terms-section-title {
    text-align: left;
    font-size: 16px;
    color: #666666;
    font-weight: 600;
    margin-bottom: 20px;
}

.terms-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    text-align: left;
    margin-top: 20px;
    font-weight: 400;
}

/* Download Section Styles */
.download-background{
    background-color: #EEF0F3;
    border-radius: 50px;
    margin: 40px 0px 0px 0px;
}

.download-section {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin: 0 auto;
}

.download-info-column {
    flex: 1;
    text-align: left;
    padding: 30px 0px;
}

.download-image-column {
    flex: 0 0 auto;
}

.download-subtitle {
    font-size: 20px;
    color: #000;
    margin-bottom: 35px;
    font-weight: 600;
    line-height: 24px;
}

.download-description {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 30px;
}

.download-phone-image {
    max-width: 300px;
    height: auto;
}

/* Contact Address Styles */
.contact-us-section {
    padding-top: 40px;
    padding-bottom: 140px;
}
.contact-us-content{
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding-top: 10px;
}

.contact-method {
    flex: 1;
}

.contact-method:first-child {
    flex: 0 0 20%;
}

.contact-method:last-child {
    flex: 1;
}

.contact-method-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.contact-phone-link {
    color: #000;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-method-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.contact-address {
    display: flex;
    gap: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact-address p {
    flex: 1;
    margin: 0;
}

/* Responsive Design */

/* Extra Large screens (1400px and up) - Stack bottom cards */
@media (min-width: 1400px) {
    .bottom-card-section {
        flex-direction: row;
        gap: 25px;
        width: 95%;
        max-width: 1400px;
    }

    .bottom-card {
        flex-direction: row;
        flex: 1;
        min-width: 0;
    }

    .bottom-card-image-column {
        flex: 0 0 280px;
    }
}

/* Large screens (1024px and up) */
@media (min-width: 1024px) {
    .hamburger-menu {
        display: none;
    }
    
    .navbar-menu {
        position: static;
        transform: none;
        visibility: visible;
        flex-direction: row;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding-top: 0;
    }

    .how-to-use-background, .download-background{
        margin: 40px 40px 0px 40px;
    }
    
    .card-section {
        flex-direction: row;
        gap: 25px;
        width: 95%;
        max-width: 1400px;
    }

    .card {
        flex-direction: row;
        flex: 1;
        min-width: 0;
    }

    .card-image-column {
        flex: 0 0 280px;
    }

    .mastercard-image {
        max-width: 250px;
    }
}

/* Medium screens (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hamburger-menu {
        display: none;
    }
    
    .navbar-menu {
        position: static;
        transform: none;
        visibility: visible;
        flex-direction: row;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding-top: 0;
    }

    .card-section {
        gap: 20px;
        width: 90%;
    }

    .card {
        flex-direction: row;
    }

    .card-image-column {
        flex: 0 0 240px;
    }

    .card-content-column {
        padding: 25px;
    }

    .card-title {
        font-size: 24px;
    }
    
    /* Bottom cards medium screens */
    .bottom-card-section {
        gap: 20px;
    }

    .bottom-card {
        flex-direction: row;
    }

    .bottom-card-image-column {
        flex: 0 0 240px;
    }

    .bottom-card-content-column {
        padding: 20px;
    }
    
    /* Banner text size adjustments for medium screens */
    .home-banner-welcome-text {
        font-size: 28px;
    }
    
    .home-banner-title-text {
        font-size: 42px;
    }
    
    .home-banner-description {
        font-size: 16px;
    }

    .home-banner-text-block {
        padding-left: 10px;
    }
    
    /* Home Banner Image Medium Screens */
    .home-iphone-banner-image {
        width: 45%;
        max-width: 350px;
    }
    
    /* Main Content Medium Screens */
    .content-header {
        font-size: 30px;
        line-height: 1.2;
    }
    
    .content-paragraph {
        font-size: 17px;
        line-height: 1.4;
    }
    
    /* Visa Tap Medium Screens */
    .visa-banner-title {
        font-size: 52px;
    }
    
    .visa-tap-card-image {
        max-width: 293px;
    }
    
    .visa-tap-banner {
        padding-top: 60px;
        padding-bottom: 35px;
    }
    
    .visa-banner-content {
        max-width: 100%;
        overflow: hidden;
    }
    
    .visa-banner-text {
        max-width: 55%;
    }
    
    /* .visa-banner-image {
        max-width: 45%;
    } */
    
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    /* Steps Images Medium Screens */
    .image-container {
        gap: 25px;
        margin-bottom: 35px;
    }
    
    .rounded-section-image {
        width: 25%;
    }
    
    /* Tooltip Medium Screens */
    .tooltip-bubble {
        width: 350px;
        font-size: 13px;
    }

    .horizontal-menu {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .usage-columns {
        padding-top: 15px;
    }
}

/* Small screens (under 767px) */
@media (max-width: 767px) {
    .hamburger-menu {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: #ffffff;
        flex-direction: column; /* This reverses the menu order vertically */
        justify-content: flex-start; /* Start from bottom since we're reversing */
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        visibility: hidden;
        border-top: 1px solid #f0f0f0;
        padding: 0px 10px;
    }
    
    .navbar-menu.mobile-menu-open {
        transform: translateX(0);
        visibility: visible;
    }
    
    .navbar-menu li {
        width: 100%;
    }
    
    .navbar-menu a {
        display: block;
        padding: 25px 20px;
        font-size: 18px;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-menu a:hover {
        background-color: #f8f9fa;
    }

    .navbar {
        padding: 0px 20px;
    }

    /* Home Banner Mobile */
    .home-banner-container {
        position: relative;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        min-height: 400px;
    }

    .home-banner-image {
        width: 100%;
        height: auto;
        min-height: 400px;
        object-fit: cover;
    }

    .home-banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 15px;
        text-align: center;
        box-sizing: border-box;
    }

    .home-banner-text-block {
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 30px;
        width: 100%;
        box-sizing: border-box;
        z-index: 2;
    }

    .home-banner-welcome-text {
        font-size: 24px;
        margin-bottom: 8px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .home-banner-title-text {
        font-size: 40px;
        margin: 0;
        line-height: 1.1;
        word-wrap: break-word;
    }

    .home-banner-description {
        font-size: 16px;
        margin-top: 10px;
        line-height: 1.4;
        word-wrap: break-word;
        padding: 0 10px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        color: #c8b8e0;
    }

    .home-iphone-banner-image {
        width: 50%;
        max-width: 300px;
        height: auto;
        z-index: 1;
    }
    
    /* Main Content Mobile */
    .content-header {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .content-paragraph {
        font-size: 16px;
        line-height: 1.4;
        padding: 0 10px;
    }

    .card-section {
        gap: 15px;
        width: 95%;
        margin: 30px auto;
    }

    .card {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .card-image-column {
        flex: none;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .card-image,
    .mastercard-image {
        max-width: 200px;
        height: auto;
    }

    .card-content-column {
        padding: 20px;
        text-align: left;
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .rounded-section img{
        width: 60%;
    }
    
    /* Bottom cards mobile */
    .bottom-card-section {
        gap: 15px;
        width: 95%;
        margin: 30px auto;
    }

    .bottom-card {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .bottom-card-image-column {
        flex: none;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .bottom-card-image {
        max-width: 250px;
        height: auto;
    }

    .bottom-card-content-column {
        padding: 20px;
        text-align: left;
    }

    .bottom-card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    /* Visa Tap Mobile */
    .visa-tap-banner {
        padding-top: 40px;
        padding-bottom: 40px;
        overflow-x: hidden;
    }
    
    .visa-banner-content {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .visa-banner-text {
        max-width: 100%;
        margin-bottom: 30px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .visa-banner-image {
        text-align: center;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }
    
    .visa-banner-title {
        font-size: 40px;
        line-height: 1.2;
        word-wrap: break-word;
        margin-bottom: 15px;
    }

    .desktop-break {
        display: none;
    }

    .visa-banner-description {
        font-size: 16px;
        line-height: 1.5;
        word-wrap: break-word;
        margin-bottom: 0;
    }
    
    .visa-tap-card-image {
        max-width: 293px;
        width: 90%;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }
    
    .how-to-use-section {
        overflow-x: hidden;
    }
    
    .usage-columns {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }
    
    .usage-column {
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }
    
    .usage-column h3 {
        font-size: 16px;
        margin-bottom: 10px;
        word-wrap: break-word;
    }
    
    .usage-column p {
        font-size: 14px;
        line-height: 1.5;
        word-wrap: break-word;
        margin: 0;
    }
    
    .section-title {
        font-size: 32px;
        text-align: left;
        margin: 20px 0 25px 0;
        word-wrap: break-word;
    }

    .how-to-use-section-title{
        font-size: 32px;
    }
    
    .faq-section {
        padding-top: 30px;
        padding-bottom: 30px;
        overflow-x: hidden;
    }
    
    .faq-list {
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-item {
        width: 100%;
        box-sizing: border-box;
    }
    
    .faq-question span:first-child {
        flex: 1;
        text-align: left;
        padding-right: 10px;
        word-wrap: break-word;
    }

    .faq-caret {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .download-section {
        /* gap: 30px; */
    }

    .download-info-column{
        padding-top: 20px;
        padding-bottom: 0;
    }
    
    .contact-address {
        flex-direction: column;
        gap: 15px;
    }

    .contact-method:first-child {
        flex: 0 0 30%;
    }

    /* Terms Section Mobile */
    .terms-section {
        padding: 30px 0;
        margin-top: 15px;
    }
    
    .terms-section-title {
        font-size: 16px;
        color: #666666;
        padding: 0 10px;
    }
    
    .terms-text {
        font-size: 16px;
        color: #666666;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    /* Download Section Mobile */
    .download-section {
        flex-direction: column;
        align-items: center;
        padding-top: 0;
    }
    
    .download-phone-image {
        max-width: 200px;
        justify-content: center;
    }

    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .main-layout {
        overflow-x: hidden;
    }
    
    /* Steps Images Mobile */
    .image-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .rounded-section-image {
        width: 60%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* Tooltip Mobile */
    .tooltip-bubble {
        width: 90vw;
        max-width: 300px;
        font-size: 12px;
        padding: 6px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Rounded sections mobile */
    .rounded-section {
        margin: 20px auto;
        padding: 25px 15px;
        border-radius: 25px;
        max-width: 98%;
    }
    
    .rounded-section-header {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .rounded-section-paragraph {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .bordered-section {
        width: 90%;
        padding: 15px;
    }
    
    .bordered-section-header {
        font-size: 18px;
    }
    
    .bordered-section-paragraph {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Footer Mobile */
    .custom-footer {
        padding: 50px 20px 30px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .logo-section,
    .menu-section,
    .link-columns {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .link-columns {
        flex-direction: row;
        gap: 20px;
        flex: 0 0 0px;
        text-align: left;
    }
    
    .text-columns {
        flex-direction: column;
        gap: 15px;
    }
    
    .text-column {
        margin-right: 0;
        width: 100%;
    }
    
    .text-column p {
        font-size: 12px;
        line-height: 1.4;
    }
}

@media (max-width: 550px) {
    .desktop-break {
        display: inline-block;
    }
}


/* Extra small screens (under 480px) */
/* Extra small screens (under 480px) */
@media (max-width: 480px) {
    .horizontal-menu {
        justify-content: flex-start;
    }
    .rounded-section img{
        width: 70%;
    }
    
    .visa-tap-card-image {
        max-width: 250px;
        width: 85%;
    }
    
    .visa-tap-banner {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .section-title {
        margin: 15px 0 20px 0;
    }
    
    .usage-columns {
        gap: 25px;
    }
    
    /* Terms Section Extra Small */
    .terms-section {
        padding: 25px 0;
        margin-top: 10px;
    }
    
    .terms-section-title {
        font-size: 16px;
        color: #666666;
        padding: 0 5px;
    }
    
    .terms-text {
        font-size: 16px;
        color: #666666;
        line-height: 1.4;
        padding: 0 5px;
    }
    
    /* Home Banner Extra Small */
    .home-banner-container {
        min-height: 350px;
    }
    
    .home-banner-image {
        min-height: 350px;
    }
    
    .home-banner-overlay {
        padding: 15px 10px;
    }
    
    .home-banner-welcome-text {
        font-size: 18px;
    }
    
    .home-banner-title-text {
        font-size: 24px;
    }
    
    .home-banner-description {
        max-width: 95%;
        color: #c8b8e0;
    }
    
    .home-iphone-banner-image {
        width: 40%;
        max-width: 150px;
    }

        /* Contact Us Mobile */
    .contact-us-content {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Main Content Extra Small */
    .content-header {
        font-size: 20px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .content-paragraph {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 15px;
    }

    /* Prevent any horizontal overflow */
    * {
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Steps Images Extra Small */
    .image-container {
        gap: 15px;
        margin-bottom: 25px;
        padding: 0 20px;
    }
    
    .rounded-section-image {
        width: 70%;
        max-width: 150px;
    }
    
    /* Tooltip Extra Small */
    .tooltip-bubble {
        width: 85vw;
        max-width: 250px;
        font-size: 11px;
        padding: 5px;
    }
    
    /* Rounded sections extra small */
    .rounded-section {
        margin: 15px auto;
        padding: 20px 10px;
        border-radius: 20px;
        max-width: 99%;
    }
    
    .rounded-section-header {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .rounded-section-paragraph {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .bordered-section {
        width: 95%;
        padding: 12px;
    }
    
    .bordered-section-header {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .bordered-section-paragraph {
        font-size: 13px;
        line-height: 1.3;
    }
    
    /* Footer Extra Small */
    .custom-footer {
        padding: 40px 15px 25px 15px;
        border-radius: 15px 15px 0 0;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .horizontal-menu li {
        font-size: 13px;
    }
    
    .link-column ul li a {
        font-size: 12px;
    }
    
    .text-column p {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* Very small screens (under 400px) */
@media (max-width: 400px) {
    .visa-tap-card-image {
        max-width: 100%;
        width: 100%;
    }
}

/* Home Page Download Badges Styles */
.home-download-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.home-download-badges a {
    display: inline-block;
    text-decoration: none;
}

.home-download-badge {
    height: 40px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.home-download-badge:hover {
    transform: scale(1.05);
}

/* Visa Tap Page Download Badges Styles */
.visa-download-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start; /* Left-aligned by default */
}

.visa-download-badges a {
    display: inline-block;
    text-decoration: none;
}

.visa-download-badge {
    height: 40px; /* Consistent across all screen sizes */
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.visa-download-badge:hover {
    transform: scale(1.05);
}

/* Responsive styles for home page download badges only */
@media (max-width: 768px) {
    .home-download-badges {
        justify-content: center;
        gap: 10px;
    }
    
    .home-download-badge {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .home-download-badge {
        height: 32px;
    }
}

/* Add to your CSS file */
.nav-bar-brand a {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.brand-logo {
    cursor: pointer;
    transition: opacity 0.2s ease;
}
