/* Sidebar styles */
.page-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
  }
  
  .sidebar {
    width: 280px;
    flex-shrink: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    height: fit-content;
    margin-top: 2rem;
  }
  
  .sidebar-nav {
    padding: 1.5rem;
  }
  
  .sidebar-title {
    color: black;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
  }
  
  .sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .sidebar-menu li {
    margin-bottom: 0.5rem;
  }
  
  .sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #444;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }
  
  .sidebar-menu a:hover {
    background: #f5f7fa;
    color: black;
  }
  
  .sidebar-menu a.active {
   background: #FFB90F;
    color: black ;
  }
  
  .sidebar-menu i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
  }
  
  .sidebar-section {
    padding: 1.5rem;
    border-top: 1px solid #f0f0f0;
  }
  
  .sidebar-section h3 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
  }
  
  .contact-info {
    font-size: 0.9rem;
    color: #666;
  }
  
  .contact-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .contact-info i {
    color: #003366;
    width: 20px;
    text-align: center;
  }
  
  /* Main content styles */
  .main-content {
    flex: 1;
    min-width: 0;
    padding: 2rem 0;
  }
  
  /* Mobile sidebar toggle */
  .sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #003366;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.3s ease;
  }
  
  .sidebar-toggle:hover {
    transform: scale(1.1);
  }
  
  /* Responsive styles */
  @media (max-width: 1024px) {
    .page-container {
      padding: 0 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .page-container {
      flex-direction: column;
      padding: 0;
    }
  
    .sidebar {
      position: fixed;
      left: -280px;
      top: 60px;
      bottom: 0;
      margin: 0;
      border-radius: 0;
      transition: left 0.3s ease;
      z-index: 99;
    }
  
    .sidebar.active {
      left: 0;
    }
  
    .sidebar-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .main-content {
      padding: 1rem;
    }
  }