
/* CSS for the FAQ section */
  .dropdown {
    cursor: pointer;
    background-color: #f2f2f2;
    padding: 10px;
    margin: 5px;
  }

  .dropdown-content {
    display: none;
  }

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