.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: 'PT Sans', 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, #d8752c 40%, rgba(255, 255, 255, 0) 55%),
      url("images/HeroImage.png"); 
  
    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: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;;
    font-weight: 700;
    font-size: clamp(40px, 2.5vw, 40px);
    line-height: 1.2;
  }
  
  .sub-script {
    font-size: 0.6em;
    vertical-align: super;
  }
  
  .text-container .headline{
    /* display: block; */
    text-align: center;
}

.main-section .headline::after {
  margin: 14px auto 0px;
}


.headline {
  font-weight: 400;
  color: #54575a;                 
  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:#02aebd;
}

.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(216, 117, 44, 0.90) 0%,
          rgba(216,117,44,0.75) 100%
        ),
      url("images/HeroImage.png");
        
  
      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 50px 0px 50px;
      }

    .text-container a {
      font-size: 32px;
    }
  
    .headline {
      width: 120px;
    }
  }
  @media (min-width: 1600px) {
    .hero {
      /* Reduce the height of the hero section */
      height: 500px; /* Adjust the height as needed */
      aspect-ratio: 1920 / 950; /* Adjust the aspect ratio to make the hero shorter */
    }
  
    .text-container {
      /* Optionally adjust the text container width or positioning */
      max-width: 30%; /* Shrink the text container slightly */
      left: 15%; /* Adjust the left offset to center the content properly */
    }
  }
  

 @media (min-width: 1070px) and (max-width: 1600px) {
    .hero {
      height: auto;              
      aspect-ratio: 1920 / 750;  
      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: #333 !important;
}


/* Responsive Adjustments for Desktops (Large Screens) */
@media (min-width: 1200px) {
    .section-2 {
        padding: 20px 0 0 10px; /* Adjust padding for large screens */
    }

    .custom-font {
        font-size: 21px; /* Larger font for big screens */
        line-height: 1.6; /* Adjust line height for readability */
        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; /* Reduce padding for laptops and medium devices */

    }

    .custom-font { 
        font-size: 18px; /* Adjust font size for laptops */
        padding: 5px 50px 5px 50px;
        font-weight: 500 !important;  
        line-height: 1.5;
        text-align: center;      

    }
}

/* Responsive Adjustments for Tablets */
@media (max-width: 992px) {
    .section-2 {
        padding: 20px 0px; /* Reduce padding for tablets */

    }

    .custom-font { 
        font-size: 1.2rem; /* Adjust font size for tablets */
        padding: 5px; /* Add padding around the content */
        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; /* Remove fixed height */
        padding: 25px 0px; /* Adjust padding for smaller screens */

    }

    .custom-font {
        padding-top: 20px; /* Ensure proper spacing on mobile */
        font-size: 1rem !important; /* Adjust font size for smaller screens */
        line-height: 1.4; /* Adjust line height for readability */
        max-width: 150%; /* Ensure the text doesn't stretch too wide */
        font-weight: 400 !important;        


    }
}

/* Additional adjustments for extra small screens (phones, foldable devices) */
@media (max-width: 480px) {
    .custom-font {
        padding: 15px; /* Further reduce padding */
        line-height: 1.3; /* Adjust line height */
        max-width: 100%; /* Allow text to span full width on very small screens */
        
    }
}

/* Adjustments for Foldable Devices (Phones with foldable screens) */
@media (max-width: 600px) and (orientation: landscape) {
    .section-2 {
        padding: 20px 10px; /* Adjust padding for foldable landscape screens */
    }

    .custom-font {
        font-size: 1rem; /* Adjust font size for foldable landscape mode */
        padding: 10px; /* Reduce padding for landscape mode */
        text-align: center; /* Center the text in landscape mode */
        padding-top: 20px;

    }
}


/* how it works section */
.open-account-btn {
    display: block;
    width: fit-content;  
    background-color: #02aebd !important;
    color: #fff !important;
    border: 3px solid rgba(255, 255, 255, 0);
    border-radius: 5px;
    letter-spacing: 0px;
    font-size: 18px;
    font-family: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;;
    font-weight: 600;
    padding: 5px 35px;
    /* margin-left: 38%; */
    text-decoration: none;
    background-image: linear-gradient(360deg, #01b0c0 0%, #0099a7 99%);
    border: 2px solid #00A2B0 !important;

}

.open-account-btn:hover {
    background-color: #fff !important;
    color: #fff !important;
    border:2px solid #00A2B0 !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: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;;
    color: #D8752C !important;
    font-weight: 700;
    padding-bottom: 20px;
    font-size: 35px;
    padding-top:0px !important;
    margin-top: 0px !important;
}

.added-bonus-section strong{
    color: #00A2B0;
}

.added-bonus-section p{
    padding-left: 0px;
    font-size: 18px;
    color: #333!important;
    text-align: left !important;
    font-family: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;;
    font-weight: 500;
}

.added-bonus-section .special-note{
    font-size: 1em;
    color: #333;
    text-align: left; 
    padding: 0 50px 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 0px !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: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.3em;
    text-align: left;    
}

.faq-section .faq-h2 {
    color: #D8752C;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.3em;
    font-family: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;;
    font-size: 36px;
}

.faq-section h6{
     padding: 0 150px !important;
     line-height: 1.5em;
     font-weight: 400;
     font-size: 20px;
}

/* 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;
    /* transition: background-color 0.3s ease;  */
}

/* Change background color when accordion is opened */
.accordion-item .accordion-toggle:not(.collapsed) {
    background-color: #ffffff; /* White background when opened */
    /* transition: background-color 0.3s ease, color 0.3s ease;  */
}

/* Change the entire accordion item to white when open */
.accordion-item:has(.accordion-collapse.show) {
    background-color: #ffffff;
    /* transition: background-color 0.3s ease; */
}

/* Active accordion item styling with faster response */
.accordion-item.open {
    background-color: #ffffff;
    /* transition: background-color 0.2s ease; */
}


/* Adjust the padding and margin of the accordion header */
.accordion-header {
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
}

/* Accordion toggle (button) styling */
.accordion-toggle {
    background-color: #FFFFFF;
    border: none;
    font-family: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;;
    font-size: 18px;
    color: #02AEBD;
    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: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    margin: 0;
    background-color: #ffffff;
    line-height: 1.5em;
}

.accordion-toggle::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    font-weight: 100;
    color: #EB6208;
    transition: transform 0.2s ease, content 0.2s ease;
  }
  
  /* When accordion is OPEN */
  .accordion-toggle:not(.collapsed)::after {
    content: "−"; /* proper minus symbol */
  }
  

.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: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;
    color: #02AEBD;
    font-weight: 700;
    font-size: 42px;          
    margin: 0 0 12px;
  }
  
  /* Paragraph */
  .contact-section p {
    margin: 0;                
    font-family: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    color: #333;
    line-height: 1.5;
  }
  
  /* Phone link in the sentence */
  .contact-section p a {
    color: #02AEBD;
    text-decoration: underline;
    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: 110px;               /* spacing between icons like screenshot */
  }
  
  /* 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: 85px;
    height: 85px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
  }
  
  /* Icon label */
  .contact-section h6 {
    margin: 0;
    font-family: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #02AEBD;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  
  /* =========================
     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; /* allow centering */
    background-color: #02AEBD !important;
    color: #fff !important;
    background-image: linear-gradient(360deg, #01b0c0 0%, #0099a7 99%);
    border: 2px solid #02AEBD !important;
    border-radius: 6px;
    font-family: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 5px 35px;
    text-decoration: none;
  }
  
  .contact-section a.learnmore:hover {
    background-color: #fff !important;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Center wrapper */
  .contact-section .text-center {
    margin-top: 24px;
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  @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; /* Adjust padding for large screens */
        font-size: 18px;
        text-align: left;    
    } 

    .contact-section h2 {
        font-size: 30px;
    }

    .contact-section .img-custom {
        width: 75px;
        height: 75px !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 10px 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; /* Center all content */
    }

    .contact-section .img-custom {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto; /* Ensure image is centered */
    }

    .contact-section h6 {
        font-size: 16px;
        text-align: center; /* Center align all text */
        padding: 0 0px; /* Add padding for smaller screens */
    }

    .contact-section p {
        padding: 0 0 10px 0px !important;
        text-align: center !important;
    }

    .contact-section h2 {
        font-size: 32px !important;
        text-align: center; /* Center heading */
    }

    /* Center row content on small screens */
    .contact-section .row {
        display: flex;
        justify-content: center; /* Horizontally center items */
        align-items: center; /* Vertically center items */
        flex-wrap: wrap; /* Allow items to wrap on small screens */
    }

    .contact-section .row .col-md-12 {
        margin-bottom: 0px; /* Space between items */
        display: flex;
        flex-direction: column; /* Stack icon and text vertically */
        align-items: center; /* Center image and text */
        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;
    }

    /* Ensure contact icons are in a row on small screens */
    .contact-right .contact-icons {
        display: flex !important;
        justify-content: center !important;
        flex-direction: column !important; /* Align icons in a row */
        flex-wrap: wrap; /* Ensure wrapping if there's not enough space */
        gap: 30px; /* Optional: Add space between icons */
    }

    .contact-right .contact-icon {
        display: flex;
        flex-direction: column;
        align-items: center; /* Ensure icons and text are centered */
        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: 25px;
    color: #5f625d;
    text-align: center;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background-color: #D8752C;
    color: #ffffff;
    padding: 40px 24px;
  }
  
  
/* Single row, left text + right logo */
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
  }
  
  /* Typography tweaks */
  .footer-left p {
    margin: 0;
    line-height: 1.3;
    font-weight: 400;
    font-size: 1rem;
  }
  
  /* Logo sizing (looks like your reference) */
  .footer-logo {
    display: block;
    max-width: 80px;   /* adjust 120–150px to taste */
    height: auto;
  }
  
  /* 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;
    }

  }
  
  