/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
  }
  

  .footer {
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
    position: relative;
    z-index: 1000;
  }

  /* Added standard main content layout for pages with sidebar */
  .main-content {
    margin-left: 250px; /* Accounts for sidebar */
    padding: 80px 30px 30px 30px; /* Accounts for navbar height */
    flex: 1;
    max-width: 1200px; /* Optional: limits content width */
  }

    .official .hero {
    background-size: cover;
    color: rgb(248, 247, 247);
    padding: 60px 20px;
    text-align: center;
  }
  .official .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .official .hero p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .official .cta-button {
    background-color: #10b981;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .official .cta-button:hover {
    background-color: #0f9d68;
  }
  
  .official .introduction-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
  }

  .official .introduction {
    flex: 2;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .official .introduction h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1f2937;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 10px;
  }

  .official .introduction h3 {
    font-size: 28px;
    margin-top: 30px;
    color: #374151;
  }

  .official .introduction p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
  }

  .official .introduction strong {
    color: #1f2937;
  }

  .official .introduction ul {
    list-style: disc;
    padding-left: 20px;
  }

  .official .introduction ul li {
    margin-bottom: 10px;
  }

  .official .introduction img {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 300px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .official .image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .official .image-container img {
    width: 200px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .suggestions {
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    width: calc(100% - 20px);
    z-index: 1000;
  }
  .suggestion-item {
    padding: 10px;
    cursor: pointer;
  }
  .suggestion-item:hover {
    background-color: #f0f0f0;
  }
  
.toggle-icon {
  cursor: pointer;
  font-size: 12px;
  margin-right: 6px;
}
.collapsed > ul.nested {
  display: none;
}
.nested {
  list-style: none;
  padding-left: 15px;
}
/* Highlight for main (parent) active item */
.sidebar li.active > a {
background-color: #00B3C9; /* Vibrant teal */
color: black;              /* Black text */
border-radius: 10px;
padding: 8px;
font-weight: bold;
}

/* Highlight for sub (child) active item */
.sidebar li li.active > a {
background-color: #E0F7FA; /* Light pastel blue */
color: black;              /* Black text */
border-radius: 10px;
padding: 8px;
font-weight: bold;
}