

  .help-container{
    display: flex;
    flex-direction: row;
  }
  .sidebar {
    width: 250px;
    background-color: #ffffff;
    border-right: 1px solid #ddd;
    padding: 20px;
    box-sizing: border-box;
  }

  .sidebar h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
  }

  .sidebar ul {
    list-style: none;
    padding-left: 0;
  }

  .sidebar li {
    margin: 8px 0;
  }

  .sidebar a {
    text-decoration: none;
    color: #0077cc;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar a:hover {
    text-decoration: underline;
  }

  .submenu {
    display: none;
    margin-left: 15px;
    transition: max-height 0.3s ease;
  }

  .submenu li {
    margin: 6px 0;
  }

  .content {
    flex: 1;
    padding: 30px;
    box-sizing: border-box;
  }

  .main-heading {
font-size: 30px;
color: #005fa3; /* Deep blue for authority */
margin-bottom: 30px;
text-align: center;
font-weight: 600;
}

.topic-heading {
font-size: 22px;
color: #0077cc; /* Brighter blue for section titles */
font-weight: 600;
margin-top: 40px;
margin-bottom: 12px;
}

.sub-heading {
font-size: 18px;
color: #009688; /* Teal for subtopics */
font-weight: 500;
margin-top: 20px;
margin-bottom: 8px;
}

p {
font-size: 15px;
color: #444;
line-height: 1.7;
}


  .search-bar {
    margin-bottom: 30px;
    text-align: center;
  }

  .search-bar input {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  @media (max-width: 768px) {
    body {
      flex-direction: column;
    }

    .sidebar {
      width: 100%;
      border-right: none;
      border-bottom: 1px solid #ddd;
    }

    .content {
      padding: 20px;
    }
  }