footer {
    background-color: #0E0E1500;
    padding: 20px;
    text-align: center;
    color: #F7F7F7;
    font-size: 12px;
    position: relative;
    z-index: 1; /* Ensure the footer stays above any background elements */
    margin-top: auto; /* Push the footer to the bottom */
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #13151A, #0E0E15); /* Fallback background color */
    color: #F7F7F7;
    position: relative;
    overflow-x: hidden; /* Prevents scrollbar from appearing due to SVG */
}

#content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    z-index: 2; /* Content is above the line */
}

#lightning-bolt {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Set a negative z-index to ensure it's at the bottom */
    pointer-events: none; /* Allows interaction with elements above the SVG */
}

.banner-panel {
    height: 80px;
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    background: transparent; /* Transparent background to blend with the page */
    margin-bottom: 50px;
}

.banner-panel[custom-background] {
    background: var(--custom-background, linear-gradient(to bottom, #13151A, #0E0E15));
}

.banner-logo {
    height: 75px; /* Scaled-down logo size */
    margin-right: 45px; /* Default margin for left-to-right order */
}

.banner-button {
    font-family: 'Montserrat', sans-serif;
    color: #6a6a6a;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-right: 45px; /* Left-to-right order */
    user-select: none;
}

.banner-button:hover {
    color: #FFC617; /* Orange accent on hover */
}

.banner-button:active {
    color: #F8E43D; /* Yellow accent on click */
}

/* Container for right-to-left elements */
.rtl-container {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.rtl-container > * {
    margin-left: 24px;
}

.rtl-container > *:first-child {
    margin-left: 0; /* No left margin for the first right-to-left element */
}

.image-button-wrapper {
    display: inline-flex;
    align-items: center;
    text-decoration: none; /* Remove underline */
}

.image-button {
    cursor: pointer;
    transition: fill 0.3s ease;
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    fill: #F7F7F7; /* Default white color */
}

.image-button:hover {
    fill: #FFC617; /* Orange accent on hover */
}

.image-button:active {
    fill: #F8E43D; /* Yellow accent on click */
}

.download-button {
    width: 200px;
    height: 40px;
    background-color: #FFC617; /* Default color */
    color: #13151A;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    border-radius: 2px;
    user-select: none;
}

.download-button:hover {
    background-color: #E1A823; /* Orange accent on hover */
}

.download-button:active {
    background-color: #F8E43D; /* Yellow accent on click */
}

/* Body Panel Styles */
.body-panel {
    padding: 30px 0;
    background-color: transparent;
    text-align: center;
}

.body-panel-title {
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    background: linear-gradient(to right, #FFC617, #F8E43D);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FFC617;
    margin-bottom: 30px;
}

.body-panel-body {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #cacaca;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* FAQ Content Styles */
.faq-content {
    /* width: 1200px; */
    padding: 30px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}

/* FAQ items with spacing and full width */
.faq-item {
    width: 100%;
    margin-bottom: 10px; /* Space between each FAQ item */
    border-radius: 8px; /* Rounded corners for each panel */
    overflow: hidden; /* Ensures rounded corners are applied */
}

/* FAQ question styles with background, arrow, and spacing */
.faq-question {
    font-size: 20px;
    color: #FFC617;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: flex-start; /* Align items to start */
    align-items: center;
    background-color: #13151AF0; /* Background for the rounded rectangle */
    padding: 15px 20px; /* Padding inside the rectangle */
    border-radius: 8px; /* Rounded corners */
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question::before {
    content: '▲'; /* Downward arrow */
    font-size: 16px;
    margin-right: 20px; /* Space between arrow and text */
    transition: transform 0.5s ease; /* Smooth transition for rotation */
    transform-origin: center; /* Ensure the arrow rotates around its center */
}

.faq-item.active .faq-question::before {
    transform: rotate(180deg); /* Rotate arrow 180 degrees when active */
}

/* FAQ answer with easing effect and opacity transition */
.faq-answer {
    font-size: 16px;
    color: #F7F7F7;
    line-height: 1.5;
    padding-left: 50px; /* Indent answer to align with question text */
    opacity: 0; /* Initially hidden */
    max-height: 0; /* Initially collapsed */
    overflow: hidden;
    transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out;
    margin-top: 10px;

}

.faq-item.active .faq-answer {
    opacity: 1; /* Fully visible when active */
    max-height: 500px; /* Adjust this to the approximate height of the content */
}

.faq-item .faq-answer.closing {
    opacity: 0; /* Fade out */
    max-height: 0; /* Collapse */
    transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

  
    .d-none{display: none;}
    .d-show {display: inherit; }
  header {
    position: relative;
    background-color: #1C1C20;
    color: #f7f7f7;
    padding: 10px;
    display: flex;
    align-items: center;
  }

  .menu-toggle {
    background: none;
    border: none;
    color: #f7f7f7;
    font-size: 24px;
    cursor: pointer;
  }

  /* Mobile menu styles */
  .mobile-menu {
    position: fixed;
    top: 0;
    left:0;
    width: 250px;
    height: 100%;
    background-color: #1C1C20;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .mobile-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu li {
    border-bottom: 1px solid #555;
  }

  .mobile-menu a {
    color: #f7f7f7;
    text-decoration: none;
    display: block;
    padding: 15px;
  }

  /* Close button styles */
  .close-btn {
    background: none;
    border: none;
    color: #f7f7f7;
    font-size: 45px;
    padding: 15px;
    cursor: pointer;
    display: block;
    text-align: right;
  }

  /* When menu is open */
  .mobile-menu.open {
    left: 0;
  }

  /* Content styles */
  .content {
    padding: 20px;
  }
  .top-menu-section {
      display: flex;
  }
  .top-menu-section img {
      height: auto;
      width: 60%;
  }

  @media (max-width: 992px) {
    .d-none {
        display: inherit;
      }
    .d-show {
      display: none;
    }
    .body-panel{width: 90%;}
  }
  @media (max-width: 480px) {
    .sub-button-right{margin-right:0px;}
    a.sub-button {
      width: 50%;
  }
    .custom-download-button{width: 100%;padding: 10px 0px;}
    .banner-logo{height:65px;}
    .download-button{  
        width: 100%;
        height: 30px;
        font-size: 11px;
        padding: 0 6px;
        margin-left: 10px;
     }
    .banner-logo{margin-right: 0;}

  }
  @media (max-width: 350px) {
  .rtl-container{    margin-left: 5px;}
  .download-button{ font-size: 10px;}
  }
