

.faq-div {
    display: flex;         /* Enables flex layout, placing children in a row by default */
    gap: 10px; 
    width: 800px;
    flex-shrink: 0;
}

.faq-side {
    width: 70%;
}

.faq-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

ol, ol li {
    line-height: 1.5;
  }
  

.full-width-line {
    width: 100vw;
    height: 1px;
    background-color: #323232;
    margin: 10px 0 0 calc(-50vw + 50%);
  }  

.sidebar-side {
    width: 35%;
}

.toc {
    border: 1px solid #B0B0B0;
    border-radius: 8px;
    top: 16px;
    padding: 16px;
    margin-top: 40px;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc .top-item {
    margin-bottom: 16px;
}

.top-item > a {
    display: block;
    padding-bottom: 10px; /* Adjust the value as needed */
}

.toc .sub-item {
    margin-left: 8px;
    margin-bottom: 8px;
}

.toc .sub-item {
    position: relative;
    padding-left: 1em; /* Space for the dash */
  }
  
.toc .sub-item::before {
content: "▪ "; /* The dash followed by a space */
position: absolute;
left: 0;
color: #B0B0B0; /* Adjust to match your design */
}

.toc a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.toc a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-div {
      flex-direction: column;  /* Stack elements vertically */
      width: 100%;
      padding: 16px;           /* Adds 16px padding around the text */
      box-sizing: border-box;  /* Ensures padding doesn't cause overflow */
    }

    .faq-side{
        width: 100%;
      }
    
    .sidebar-side {
      display: none;           /* Hide the table of contents */
    }
  }
  