:root {
    --color-primary: #55ACD8;
    --color-primary-dark: #3a8cb5;
    --color-primary-light: #87c9eb;
    --color-surface: #ffffff;
    --color-background: #f9fafb;
    --color-text-primary: #212121;
    --color-text-secondary: #616161;
    --color-border: #e0e0e0;
    --font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  
    --elevation-1: 0 1px 3px rgba(0, 0, 0, 0.12);
    --elevation-2: 0 3px 6px rgba(0, 0, 0, 0.16);
    --radius: 8px;
  }
  
  /* Reset & Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  #wrapper {
    width: 90%;
}
  
  body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-background);
    -webkit-font-smoothing: antialiased;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.5em;
  }
  
  p {
    color: var(--color-text-secondary);
    margin-bottom: 1em;
  }
  
  /* Links */
  a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  a:hover,
  a:focus {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }
  
  ul{
    padding-left: 25px;
  }


  /* Tables */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--elevation-1);
  }
  
  thead {
    background: var(--color-primary);
    color: #fff;
    text-align: left;
  }
  
  thead th {
    padding: 0.75em 1em;
    font-weight: 500;
  }
  
  tbody tr {
    border-top: 1px solid var(--color-border);
  }
  
  tbody tr:hover {
    background: var(--color-primary-light);
    color: #fff;
  }
  
  td {
    padding: 0.75em 1em;
    color: var(--color-text-primary);
  }
  
  /* Buttons (Optional Basic Style) */
  button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.6em 1.2em;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--elevation-1);
    transition: background 0.2s ease, box-shadow 0.2s ease;
  }
  
  button:hover {
    background: var(--color-primary-dark);
    box-shadow: var(--elevation-2);
  }
  
  button:disabled {
    background: var(--color-border);
    cursor: not-allowed;
  }
  
  /* Forms */
  input,
  select,
  textarea {
    width: 100%;
    padding: 0.6em;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border 0.2s ease;
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(85, 172, 216, 0.3);
  }

  

  .accordion {
    border-radius: 0;
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    transition: 0.4s; 
}
  .accordion-panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden; 
}
  .arrow-icon__line {
    width: 20px;
    height: 4px;
    background-color: #000000; }
  .accordion__indicator::before {
    content: "+"; 
    font-size: 40px;
}
  .accordion--open .accordion__indicator::before {
    content: "-"; 
    font-size: 40px;
   
}

    #accodianWrapper{
        background-color: black;
    }




    #faqHeader{
        font-family: var(--font-family);
        font-size: 36px;
        line-height: 1.6;
        font-weight: lighter;
        color:white;
        -webkit-font-smoothing: antialiased;
        padding-left: 20px;
    }




    .container {
        display: flex;
        align-items: flex-start; /* Aligns content in both columns to the top */
        gap: 20px; /* Adds space between columns */
        padding: 20px;
        flex-wrap: wrap;
        text-align: left;

        display: flex;
      }

      @media (min-width: 480px) {
        .container { 
            margin-left: 20px;
            margin-right: 20px;
        }
      }
      
      @media (min-width: 768px) {
        .container { 
            margin-left: 60px;
            margin-right: 60px; 
        }
      }
      
      @media (min-width: 992px) {
        .container { 
            margin-left: 80px;
            margin-right: 80px; 
        }
      }



      
      .column {
        flex: 1; /* Makes columns share available space equally */
        padding: 1rem; /* Adds some spacing within columns */
        box-sizing: border-box; /* Ensures padding is included in the element's total width */

      }
      
      /* Media query for responsiveness */
      @media (max-width: 768px) {
        .column {
          flex: 100%; /* Columns stack vertically on screens smaller than 768px */
        }
      }


      #bannerImage {
        background: url(bannerImage.webp);
        background-position: center;
        background-size: cover;
        height: 225px; width: 100%;
      }
      
      @media (min-width: 480px) {
        #bannerImage { height: 200px; 
            margin-bottom: 20px;
        }
        
      }
      
      @media (min-width: 768px) {
        #bannerImage{ height: 300px; 
            margin-bottom: 40px;
        }
      }
      
      @media (min-width: 992px) {
        #bannerImage{ height: 400px; 
            margin-bottom: 60px;
        }

      }


      .introWrapper {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
      }
  

     
        .introParagraph { 
            width: 460px;
            margin-top: 20px;
        }
 
        #ioApp { 
            padding: 20px;
        }
      
        @media (min-width: 480px) {
            #ioApp { 
                margin-left: 20px;
                margin-right: 20px;
            }
          }
          
          @media (min-width: 768px) {
            #ioApp { 
                margin-left: 60px;
                margin-right: 60px; 
            }
          }
          
          @media (min-width: 992px) {
            #ioAppp { 
                margin-left: 80px;
                margin-right: 80px; 
            }
          }



          header {
            width: 100%;
            height: 30 px;
            background-color: black;
            text-align: center;
        margin-bottom: 60px;
          }

          #headerText{
            color: var(--color-surface);
            font-weight:lighter;
            font-size: 40px;
          }

          footer{
            text-align: center;
            margin: 40px;
          }



          .video-wrapper {
            position: relative;
            width: 100%; /* Or a specific width for the video within the flex item */
            padding-bottom: 56.25%; /* For a 16:9 aspect ratio (9 / 16 * 100%) */
            height: 0; /* Important for the padding-bottom trick */
            overflow: hidden; /* Prevents overflow if content extends beyond the calculated height */
          }
          
          .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
          }

          hr{
            width: 300px;
            margin-top: 20px;
            margin-left: auto;
            margin-right: auto;
          }