        :root {
          --theme:#5cb45c;
          --themeL:#acd9ac;
          --theme2:#0077cc;
          --black1:#000000;
          --black2:#494949;
          --black3:#696969;
          --black4:#898989;
          --white1:#FFFFFF;
          --white2:#FAFAFA;
          --white3:#F1F1F1;
          --white4:#E1E1E1;          
        }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

.red{background-color: red}
.blue{background:blue;}
.orange{background:orange}
.purple{background:purple}
.silver{background:silver}
.grey{background:grey}
.gold{background:gold}
.imagecontainer,.youtubecontainer,.accordioncontainer,.faqcontainer,.descriptioncontainer{
  padding:4% 2%;
}
.descriptioncontainer{
  background-color: gold;
  padding-top:3.5%;
}
.imagecontainer{
 background-color: teal;
}
.youtubecontainer{
 background-color: purple;
}
.accordioncontainer{
 background-color: magenta;
  padding-top:3.5%;
}
.faqcontainer{
 background-color: grey;
  padding-top:3.5%;
}

    h1,h2,h3,h4,.logo,.footerlogo{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
      color:var(--black2);
    }

    p, a, li, div {
        font-family: sans-serif;
    }

    h1{
        font-size: 3rem;
    }

    h2{
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    h3{
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    p{
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--black3);
    }


.youtubeleft, .youtuberight {
    width: 100%;
  }
}



.tool img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 1rem;
}
#youtube-video{
    border-radius: 7px;

}

@media (max-width: 768px) {
    .tool {
        width: 100%;
    }
}

.faq-answer {
  display: block;
  margin-top: 1rem;
}

.accordion-header .arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease-out;
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 0rem;
    margin-bottom: 2rem;
}

.accordion{
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid var(--white4);
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

.faq {
  width: 100%;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
}
    .menu{
    font-family:sans-serif;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--white2);
      padding: 0.8rem 2rem;
      color: var(--black2);
      position: relative;
      z-index: 1000;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
    }
    .menu {
      display: flex;
      gap: 1.5rem;
    }

    .menu-item {
      position: relative;
    }

    .menu a {
      color: var(--black2);
      text-decoration: none;
      padding: 1rem 0.5rem 1rem 0.5rem ;
      display: flex;
      align-items: center;
      gap: 0.25rem;
      transition: color 0.3s;
      font-size:1rem;
    }

    .menu a:hover {
      color:var(--theme2);
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: var(--white2);
      min-width: 150px;
      border-radius:6px;
      top: 100%;
      right: 0;
      left: auto;
      z-index: 10;
      max-height: 250px; /* Scroll for long menus */
      overflow-y: auto;
    }

    .dropdown-content a {
      color: var(--black2);
      padding: 0.5rem 1rem;
      white-space: nowrap;
    }

    .menu-item:hover .dropdown-content {
      display: block;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      color: black;
      border: none;
      cursor: pointer;
    }

    .dropdown-icon {
      display: inline-block;
      width: 10px;
      height: 10px;
    }


* {
  --sb-track-color: var(--white2);
  --sb-thumb-color: #909090;
  --sb-size: 12px;
}

*::-webkit-scrollbar {
  width: var(--sb-size)
}

*::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 0px;
}

*::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 0px;
  
}

@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}


main h1{
  font-size: 3rem;
  text-align: center;
  padding:1rem 0;
}

.toolcontainer {
  display: flex;
}

.toolleft {
  flex-grow: 1;
  min-height: 600px;
}

.toolright {
  width: 305px;
  min-height: 600px;
}

@media (max-width: 1000px) {
  .toolright {
    display: none;
  }
  .toolleft{
    width: 100%;
  }
}

.imagecontainer {
  display: flex;
}

.imageleft {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#placeholder-image{
  border-radius:8px;
  max-width:400px;
}

.imageright {
  flex: 1;
  padding: 2rem;
}

.description {
  display: flex;
}
.descriptionleft{
  text-align: center;
}

.descriptionleft, .descriptionright {
  flex: 1;
  padding: 2rem;
}

.icon-description {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.icon-description svg {
  margin-right: 1rem;
}

@media (max-width: 768px) {
  .imagecontainer {
    flex-direction: column;
  }
  .imageleft, .imageright {
    width: 100%;
  }
  .description {
    flex-direction: column;
  }
}

.youtubecontainer {
  display: flex;
}

.youtubeleft {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.youtuberight {
  flex: 1;
  padding: 2rem;
}

@media (max-width: 1000px) {
  .youtubecontainer {
    flex-direction: column;
  }
  .youtubeleft, .youtuberight {
    width: 100%;
  }
}

.youtubecontainer {
  display: flex;
}

.youtubeleft {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.youtuberight {
  flex: 1;
  padding: 2rem;
}

@media (max-width: 1000px) {
  .youtubecontainer {
    flex-direction: column;
  }
  .youtubeleft, .youtuberight {
    width: 100%;
  }
}

footer{
  color:var(--black2);
  background-color:var(--white2); 
  font-family: sans-serif;
  padding: 2rem 1rem;
  text-align: center;
}
.footerlogo{
  font-size: 1.5rem;
  font-weight:bold;
}
.footercopy{
  margin-top: 1rem;
  font-size: 0.9rem;
  color:var(--black4);
}
.footerlinks{
  margin-top: 1.2rem;
}
.footerlinks a{
  color:var(--black2);
  text-decoration: none;
  margin:0 0.7rem;
}
.footerlinks a:hover{
  color:var(--theme2);
}


    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background-color:var(--white2);
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 190px;
        padding:0 10px 10px 10px;
        gap: 0.9rem;
      }

      .menu.show {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
      
      .menu a {
        padding: 0rem 0.5rem 0.5rem 0.5rem;
      }
    
      .menu-item:hover .dropdown-content {
        display: none;
      }

      .menu-item.open .dropdown-content {
        display: block;
        position: static;
        background-color:var(--white2);
        max-height: 200px;
        overflow-y: auto;
      }

      .dropdown-content a {
        color: var(--black2);
        padding: 0.5rem 0.5rem 0.5rem 1rem;
      }
    }