.logo {
    max-width: 320px; /* Default size for larger screens */
    height: auto; /* Maintain aspect ratio */
}

@media (max-width: 575.98px) {
    .logo {
        max-width: 250px; /* Size for extra small devices */
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .logo {
        max-width: 250px; /* Size for small devices */
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .logo {
        max-width: 260px; /* Size for medium devices */
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .logo {
        max-width: 280px; /* Size for large devices */
    }
}

@media (min-width: 1200px) {
    .logo {
        max-width: 300px; /* Size for extra-large devices */
    }
}



body, p {
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;;
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 300px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

:root{
  /* tune these two numbers only */
  --hero-min: 420px;     /* never smaller than this */
  --hero-max: 78dvh;     /* never taller than this (dynamic vh works on mobile) */
  /* if your hero image is ~16:9, height = 56.25% of width */
  --hero-aspect-h: 56.25vw;   /* = 9/16 * 100; change if your image aspect differs */
}


.sub-script {
    vertical-align: 0.4em;  /* Adjust the value to control how much it moves up */
  }
  
  .hero {
    position: relative;
    width: 100vw;
    aspect-ratio: 1920 / 750;
    min-height: 500px;
    overflow: hidden;
  
    display: grid;
    align-items: center;      /* vertical center */
    justify-items: start;     /* horizontal alignment */
  
    background-image: linear-gradient(80deg, #53575A 46%, rgba(255, 255, 255, 0) 55%),
      url("images/HeroImage.jpg"); 
  
    background-size: 100% 100%, 62% auto;
    background-position: left center, right center;
    background-repeat: no-repeat;
  }
  
  
  
  
  .hero-mask {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8;base64,PHN2ZyAgZmlsbD0iUkdCQSgyNTUsMjU1LDI1NSwwKSIgdmlld0JveD0iMCAwIDE5MjAgMjU2MCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pbllNaW4gc2xpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExNzUuNDMsMEgxOTIwVjI1NjBIMTE3Ni4zOGMtMTk2LjY4LTM2OC45NS0zMTAuOS04MDguNzItMzEwLjktMTI4MC44OUM4NjUuNDgsODA3LjcsOTc5LjMzLDM2OC41OCwxMTc1LjQzLDBaIi8+PC9zdmc+");
    -webkit-mask-size: cover;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
  
    mask-image: url("data:image/svg+xml;charset=utf-8;base64,PHN2ZyAgZmlsbD0iUkdCQSgyNTUsMjU1LDI1NSwwKSIgdmlld0JveD0iMCAwIDE5MjAgMjU2MCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ieE1pbllNaW4gc2xpY2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExNzUuNDMsMEgxOTIwVjI1NjBIMTE3Ni4zOGMtMTk2LjY4LTM2OC45NS0zMTAuOS04MDguNzItMzEwLjktMTI4MC44OUM4NjUuNDgsODA3LjcsOTc5LjMzLDM2OC41OCwxMTc1LjQzLDBaIi8+PC9zdmc+");
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
  }
  
  
  .text-container {
    margin: 0;
    z-index: 2;
    max-width: 40%;
    margin-left: 6%;
    color: #fff;
    text-align: center;
  }
  
  .text-container a {
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;;
    font-weight: 700;
    font-size: clamp(40px, 2.5vw, 40px);
    line-height: 1.2;
  }
  
  .sub-script {
    font-size: 0.9em;
    vertical-align: super;
  }
  
  .text-container .headline{
    /* display: block; */
    text-align: center;
}

.main-section .headline::after {
  margin: 14px auto 0px;
}


.headline {
  font-weight: 400;
  color: #FF671D;                 
  text-align: center;
  margin: 0 auto;
  max-width: 1000px;           
  font-size: clamp(18px, 2.2vw + 12px, 40px);
  line-height: 1.35;
  letter-spacing: 0.2px;
  position: relative;
  display: inline-block;
}

.headline::after{
  content:"";
  display:block;
  width: clamp(120px, 12vw, 170px);
  height: 6px;
  background:#FF671D;
}

.headline sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 0;
  margin-left: 2px;
}
  


  
  
  @media (max-width: 1068px) {
    .hero {
      height: auto;
      min-height: 420px;
      display: grid;
      align-items: center;
      background-image:
        linear-gradient(
          90deg,
          rgba(83, 87, 90, 0.95) 0%,
          rgba(83,87,90,0.85) 100%
        ),
      url("images/HeroImage.jpg");
        
  
      background-size: 100% 100%, cover;
      background-position: left top, center;
    }
  
    .text-container {
      max-width: 90%;
      margin: 0 auto;
      align-self: center;
      padding: 0px 80px 0px 80px;
    }
  
    .text-container a {
      font-size: 32px;
    }
  }
  
  
  
  @media (max-width: 480px) {
    .text-container {
        max-width: 95%;
        margin: 0 auto;
        padding: 0px 30px 0px 30px;
      }

    .text-container a {
      font-size: 32px;
    }
  
    .headline {
      width: 120px;
    }
  }
  @media (min-width: 1600px) {
    .hero {
      height: 550px; 
      aspect-ratio: 1920 / 950; 
    }
  
    .text-container {
      max-width: 30%; 
      left: 15%; 
    }
  }
  

 @media (min-width: 1070px) and (max-width: 1600px) {
    .hero {
      height: auto;              
      aspect-ratio: 1950 / 780;  
      min-height: unset;
    }
  
    .hero-mask {
      height: 100%;
    }

    .text-container {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 10%;              
        max-width: 30%;
        font-size: 32px !important;
        margin: 0;
        padding: 0;
      }
  } 

.section-2 {
  padding: 60px 0 0 0;  
}

.custom-font{
  color: #53585A !important;
}


@media (min-width: 1200px) {
    .section-2 {
        padding: 20px 0 0 10px; 
    }

    .custom-font {
        font-size: 21px; 
        line-height: 1.6; 
        padding-top: 20px;
        font-weight: 500 !important;        
    }
}

/* Responsive Adjustments for Laptops and Medium Devices */
@media (max-width: 1199px) {
    .section-2 {
        padding: 20px 0 0 10px; 

    }

    .custom-font { 
        font-size: 20px; 
        padding: 5px 0px 5px 0px;
        font-weight: 500 !important;  
        line-height: 1.5;
        text-align: center;      

    }
}

/* Responsive Adjustments for Tablets */
@media (max-width: 992px) {
    .section-2 {
        padding: 20px 0px; 

    }

    .custom-font { 
        font-size: 1.2rem; 
        padding: 5px; 
        font-weight: 400 !important;        

    }
}

/* Responsive Adjustments for Mobile and Small Devices */
@media (max-width: 768px) {
    .headline {
        max-width: 92%;
        font-size: clamp(20px, 4.2vw, 16px);
        line-height: 1.4;
    }
    .section-2 {
        height: auto; 
        padding: 25px 0px; 

    }

    .custom-font {
        padding-top: 20px; 
        font-size: 18px !important; 
        line-height: 1.4; 
        max-width: 150%; 
        font-weight: 400 !important;        


    }
}

/* Additional adjustments for extra small screens (phones, foldable devices) */
@media (max-width: 480px) {
    .custom-font {
        padding: 15px; 
        line-height: 1.3; 
        max-width: 98%; 
        
    }
}

/* Adjustments for Foldable Devices (Phones with foldable screens) */
@media (max-width: 600px) and (orientation: landscape) {
    .section-2 {
        padding: 20px 10px; 
    }

    .custom-font {
        font-size: 18px; 
        padding: 10px; 
        text-align: center; 
        padding-top: 20px;

    }
}


/* how it works section */
.open-account-btn {
    display: block;
    width: fit-content;  
    background-color: #FF671D !important;
    color: #fff !important;
    border: 3px solid rgba(255, 255, 255, 0);
    border-radius: 2px;
    letter-spacing: 0px;
    font-size: 17px;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;;
    font-weight: 550;
    padding: 5px 30px;
    /* margin-left: 38%; */
    text-decoration: none;
    /* background-image: linear-gradient(360deg, #01b0c0 0%, #0099a7 99%); */
    border: 2px solid #FF671D !important;

}

.open-account-btn:hover {
    background-color: #53585A !important;
    color: #fff !important;
    transform: translateY(-5px); 
    border:2px solid #53585A !important;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}



@media (max-width: 768px) {
    /* Decrease the size of headings and text */
    body{
    overflow-x: hidden;

    }
    h1, h2, h5 {
        font-size: 1.5rem;
    }
    
    p{
        font-size: 1rem !important;
    }
}

img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

@media (max-width: 768px) {
    .faq-image {
        max-width: 100%;
        height: auto;
    }
}

/* Image styling for better alignment and size control */
.bonus-image {
    max-width: 85%;
    height: auto; 
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5); 
}


.added-bonus-section h2{
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;;
    color: #FF671D !important;
    font-weight: 700;
    padding-bottom: 15px;
    font-size: 34px;
    padding-top:0px !important;
    margin-top: 0px !important;
}

.added-bonus-section strong{
    color: #FF671D;
}

.added-bonus-section p{
    padding-left: 0px;
    font-size: 18px;
    color: #53575A!important;
    text-align: left !important;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;;
    font-weight: 500;
}

.added-bonus-section b{
  color: #53575A;
}

.added-bonus-section .special-note{
    font-size: 15px;
    text-align: left; 
    padding: 0 0px 20px 0px;
    line-height: 1.3em;
}

/* Responsive handling */
@media (max-width: 768px) {
    .added-bonus-section {
        padding: 0px 10px 5px 10px !important;
    }

    .added-bonus-section h2{
        padding-top: 20px !important;
        font-size: 32px;
    }

    .added-bonus-section p {
        text-align: center !important;
        padding: 0px 10px !important;
    }

    .added-bonus-section .col-md-6 {
        margin-bottom: 20px;
    }
    
    .open-account-btn {
        margin-top: 0px;
    }

    .bonus-image {
        max-width: 100%; 
    }

    .added-bonus-section .special-note{
        font-size: 0.7em !important;
        color: #333;
        padding: 0 0px !important;
        text-align: center !important; 
    }

    .bonus-list{
        font-size:16px;
        padding-right: 10px !important;
    }
    .special-note{
        padding-bottom: 10px !important
    }
}


/* Center the image + content stack (tablets/sm laptops) */
@media (min-width: 769px) and (max-width: 1199px) {
  .added-bonus-section .row {
    display: flex;                 
    flex-direction: column;
    align-items: center;           
  }

  /* center each column and cap its width */
  .added-bonus-section .col-md-6 {
    width: 100%;
    max-width: 720px;        
    margin: 0 auto;
    text-align: center;
  }

  .added-bonus-section p{
    font-size: 18px;
    text-align: center !important;
  }
  /* center the image itself */
  .bonus-image {
    display: block;
    width: min(100%, 640px);
    height: auto;
    margin: 0 auto 28px;          
    float: none;
  }

  /* keep bullets centered as a block but left-aligned inside */
  .bonus-list {
    display: inline-block;
    text-align: center;
  }

  .added-bonus-section .special-note{
    text-align: center; 
    padding: 10px 0px 20px 0px !important;
  }
}



/* FAQ Section Styling */
.faq-section h2 {
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.3em;
    text-align: left;    
}

.faq-section .faq-h2 {
    color: #FF671D;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.3em;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;;
    font-size: 36px;
}

.faq-section h6{
     padding: 0 150px !important;
     line-height: 1.5em;
     font-weight: 400;
     font-size: 19px;
}

/* Accordion General Styling */
.accordion-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  background-color: #FFFFFF;
  padding: 1px;
  font-weight: 600;
}


.accordion-item .accordion-toggle i {
transition: transform 0.3s ease; 
}

.accordion-item .accordion-toggle:not(.collapsed) i {
transform: rotate(180deg); 
}

.accordion-item .accordion-toggle:not(.collapsed) {
background-color: #fff; 
}

.accordion-header {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
}


.accordion-toggle {
  background-color: #FFFFFF;
  border: none;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-size: 18px;
  color: #53585A;
  font-weight: 600;
  width: 100%;
  text-align: left;
  padding: 20px 50px 20px 25px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  line-height: 1.5em;
  margin-right: 20%;
}


.accordion-body {
  padding: 0px 25px;
  padding-bottom: 20px;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #53575A;
  margin: 0;
  background-color: #ffffff;
  line-height: 1.5em;
}


.accordion-body a {
  color: #FF671D;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}


.accordion-toggle i {
  font-size: 15px; 
  color: #EB6208; 
  margin-left: 5px;
}

.accordion-toggle:not(.collapsed) i {
  content: ""; 
}


.image-container img {
    max-width: 90%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.faq-image {
    height: 60%;
    object-fit: cover;
}


/* =========================
   CONTACT SECTION (FINAL)
========================= */
.contact-section {
    padding: 30px 0;
  }
  
  /* Headline */
  .contact-section h2 {
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    color: #FF671D;
    font-weight: 700;
    font-size: 42px;          
    margin: 0 0 12px;
  }
  
  /* Paragraph */
  .contact-section p {
    margin: 0;                
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    color: #333;
    text-align: center;
    line-height: 1.5;
  }
  
  /* Phone link in the sentence */
  .contact-section p a {
    color: #53575A;
    text-underline-offset: 2px;
    font-weight: 600;
  }
  
  .contact-section p a:hover {
    text-decoration: underline;
  }
  
  /* =========================
     ICONS AREA
  ========================= */
  
  /* Right-side container (icons) */
  .contact-section .contact-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 240px;               
  }
  
  /* Each icon+label */
  .contact-section .contact-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
  }
  
  /* Icon image */
  .contact-section .img-custom {
    width: 95px;
    height: 95px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
  }
  
  /* Icon label */
  .contact-section h6 {
    margin: 0;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #53575A;
    text-underline-offset: 2px;
  }

  .contact-section h6:hover {
    text-decoration: underline;
  }
  
  /* =========================
     OFFER TEXT (KEEPING YOUR STYLE)
  ========================= */
  .offer-text p {
    font-size: 14px !important;
    color: #333;
    font-weight: 400;
    text-align: justify !important;
    margin: 0;
  }
  
  .offer-text b {
    color: #333;
    font-weight: 600;
  }
  
  /* =========================
     CTA BUTTON (Get Started)
  ========================= */

  .contact-section a.learnmore {
    display: inline-block;
    background-color: #FF671D !important;
    color: #fff !important;
    border-radius: 2px;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 5px 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-section a.learnmore:hover {
    background-color: #53575A !important;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-5px); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
  }

  .contact-section a.learnmore i {
    color: #fff;
    font-size: 18px; 
  }
  
  /* Center wrapper */
  .contact-section .text-center {
    margin-top: 24px;
  }
  

  
  @media (max-width: 991px) {
    .contact-section h2 {
      font-size: 32px;
      text-align: center;
    }
  
    .contact-section p {
      text-align: center;
      font-size: 18px;
    }
  
    .contact-section .contact-icons {
      gap: 100px;
      margin-top: 25px;
    }
  
    .contact-section .img-custom {
      width: 80px;
      height: 80px;
    }
  
    .contact-section h6 {
      font-size: 18px;
    }

    .faq-section h6{
        padding: 0px 10px !important;
    }
  }
  
/* Adjustments for Medium and Large Screens */
@media (min-width: 1024px) {
  
    .contact-section p {
        padding-right: 0px; 
        font-size: 18px;
    } 

    .contact-section h2 {
        font-size: 30px;
    }

    .contact-section .img-custom {
        width: 85px;
        height: 85px !important;
    }
    .offer-text p{
        font-size: 14px;
        text-align: justify;
    }
}

/* Adjustments for Foldable and Smaller Screens */
@media (max-width: 768px) {
    .faq-section h6 {
        font-size: 15px;
        line-height: 1.4em;
        margin: 20px 20px 20px 0px !important;
        padding: 0 0px !important;
    }
    .accordion-body {
        font-size: 16px;
    }
    .accordion-toggle {
        font-size: 16px;
    }

    .faq-section .faq-h2 {
        font-size: 32px;
    }

    .contact-section {
        padding: 20px 0;
        text-align: center; 
    }

    .contact-section .img-custom {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto; 
    }

    .contact-section h6 {
        font-size: 16px;
        text-align: center;
        padding: 0 0px; 
    }

    .contact-section p {
        padding: 0 0 10px 0px !important;
        text-align: center !important;
    }

    .contact-section h2 {
        font-size: 32px !important;
        text-align: center;
    }

    
    .contact-section .row {
        display: flex;
        justify-content: center; 
        align-items: center; 
        flex-wrap: wrap;
    }

    .contact-section .row .col-md-12 {
        margin-top: 0px !important;
        display: flex;
        flex-direction: column; 
        align-items: center; 
        padding-top: 0px !important;
    }

    /* Offer text styling */
    .offer-text p {
        text-align: justify !important;
        font-size: 12px !important;
        padding: 0 10px !important;
    }

    .contact-section .spanish-text {
        padding: 10px 30px 10px 20px !important;
        line-height: 1.2 !important;
    }

  
    .contact-right .contact-icons {
        display: flex !important;
        justify-content: center !important;
        flex-direction: column !important; 
        flex-wrap: wrap; 
        gap: 30px; 
    }

    .contact-right .contact-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }
}


/* Adjustments for Extra-Small Screens (e.g., foldable phones) */
@media (max-width: 480px) {


    .contact-section h2 {
        padding-bottom: 10px;
        font-size: 24px;
        text-align: center;
    }

    .contact-section .img-custom {
        padding: 0 10px;
        width: 70px ;
        height: 70px ;
    }

    .contact-section .row {
        justify-content: center;
    }
}




/* Sign-up Section */
.sign-up p {
    padding-top: 40px;
    padding-bottom: 0;
    font-size: 14px;
    color: #53575A;
    text-align: center;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background-color: #53575A;
    color: #ffffff;
    padding: 40px 24px;
  }
  
  
  .footer-inner {
    display: flex;
    justify-content: flex-end;
    /* align-items: center; */
    width: 100%;
}

  
  /* Logo sizing (looks like your reference) */
  .footer-logo {
    max-width: 150px;   /* adjust 120–150px to taste */
  }
  
  /* Responsive: stack on small screens, keep logo to the right edge */
  @media (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .footer-right{
      align-self: center;
    }
    .footer-left{
      text-align: center;
    }

  }
  
  
