* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    text-align: center;
  }
  
  body {
    font-family: arial;
    background-color: #cddeff;
  }

  h2 {
    text-align: center; /* Add this line to center align the "About Us" heading */
}
  
  nav {
    position: fixed;
    top: 0px;
    left: 0px;
    background: #689dff;
    height: 80px;
    width: 100%;
    z-index: 2;
  }
  
  .navbar {
    background-color: #689dff;
  }
  
  .navbar-brand,
  nav ul li a {
    color: white;
  }
  
  label.logo {
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 15px;
    font-weight: bold;
  }
  
  nav ul {
    float: right;
    margin-right: 15px;
  }
  
  nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }
  
  nav ul li a {
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
  }
  
  a.active,
  a:hover {
    background: #3c80ff;
    color: white;
    transition: 0.5s;
  }
  
  .checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 15px;
    cursor: pointer;
    display: none; 
  }
  
  #check {
    display: none;
  }
  
  .marginauto {
    margin: 10px auto 20px;
    display: block;
  }
  
  .topimg {
    width: 100%;
    z-index: -1;
  }
  
  .text-block {
    position: absolute;
    border-radius: 25px;
    bottom: 10%;
    right: 5%;
    background: rgba(0, 0, 0, 0.73);
    color: white;
    padding: 5%;
  }
  
  .schedule,
  .location {
    background: white;
    border-radius: 25px;
    margin: 10px auto;
    padding: 20px;
  }
  
  .text {
    text-align: center;
    padding-top: 5%;
  }
  
  /* Dropdown Menu Styling */
  
  .navbar-light .navbar-nav .nav-item {
    padding: 0;
  }
  
  .navbar-light .navbar-nav .nav-link {
    color: white !important;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    transition: background 0.5s, color 0.5s;
  }
  
  .navbar-light .navbar-nav .nav-item.active .nav-link,
  .navbar-light .navbar-nav .nav-item:hover .nav-link {
    background-color: #446cb6;
    color: white;
  }
  
  .navbar-light .navbar-nav .nav-item.dropdown:hover .nav-link {
    background-color: #446cb6;
  }
  
  .navbar-light .navbar-nav .nav-item.dropdown .dropdown-menu {
    background-color: #689dff; /* Updated to a shade of pink */
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  
  .navbar-light .navbar-nav .nav-item.dropdown .dropdown-menu a {
    color: white;
    padding: 10px 15px; /* Adjust the padding for each link */
    display: block;
    border-radius: 3px;
  }
  
  .navbar-light .navbar-nav .nav-item.dropdown .dropdown-menu a:hover {
    background-color: #446cb6;
    color: white;
  }
  
  .navbar-light .navbar-brand,
  .navbar-light .navbar-nav .nav-link {
    color: white !important;
  }
  
  th, td {
    padding: 15px;
  }
  
  .center {
    margin-left: auto;
    margin-right: auto;
  }
  
  .menu {
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
    text-align: center;
  }
  
  .menu-section {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex; /* Change to flex */
    flex-wrap: wrap; /* Allow flex items to wrap */
    position: relative;

  }

  .centertext {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .menu-section {
    position: relative;

  }
  
  .content {
    position: absolute;
    top: 100%; /* Position content below the button */
    left: 0;
    width: 100%;

  }
  
  .menu-section .collapsible {
    width: calc(33.33% - 20px); /* Adjust button width based on desired layout */
    margin: 10px; /* Adjust margin as needed */
  }
  
  .menu-section ul {
    padding-left: 20px;
  }
  
 .inner-box p {
    margin-top: 10px;
    margin-bottom: 10px; /* Adjust margin bottom as needed */
    padding-left: 10%;
    padding-right: 10%;
}

.collapsible {
    background-color: #689dff;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    font-size: 15px;
  }
  
  .active, .collapsible:hover {
    background-color: #446cb6;
  }
  
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #ffffff;
    z-index: 1;
  }
  .bottom-row {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1; /* Ensure the bottom row stays above the expanded content */
}
  
  @media (max-width: 768px) {
    label.logo {
      font-size: 25px;
      padding-left: 15px;
    }
  
    nav ul {
      margin-right: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #689dff;
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }
  
    nav ul.active {
      max-height: 100%; /* Change to 100% to ensure it expands fully */
    }
  
    nav ul li {
      display: block;
      margin: 10px 0;
      line-height: 30px;
    }
  
    nav ul li a {
      font-size: 20px;
      background: #689dff; /* Added background color */
      display: block;
      padding: 10px;
      border-radius: 3px;
    }
  
    a:hover,
    a.active {
      background: none;
      color: #446cb6;
    }
  
    #check:checked~ul {
      display: flex;
      flex-direction: column; /* Ensure links stack vertically */
    }
  
    .checkbtn {
      display: block;
      position: absolute;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
    }
  
    .schedule,
    .location {
      width: 80%;
      margin: 10px auto;
    }
  
    .text-block {
      border-radius: 0px;
      bottom: 0%;
      right: 0%;
      width: 0%;
      height: 0px;
      font-size: 0px;
    }
  }
  @media (min-width: 769px) {
    #check,
    .checkbtn {
      display: none;
    }
  }
  
  