  
  /* Navigation Bar */
  nav {
    width: 100%;
    background-color: #2b2b3d;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin-top: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
  }
  
  nav ul li {
    padding: 10px 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #f0e6fa;
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  
  /* Active Link Style */
  nav ul li a.active {
    background-color: #ffd1d1; /* Light Pink */
    color: #1e1e2f;
  }
  
  /* Media Query for Mobile Devices */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }
  
    nav ul li {
      padding: 10px 0;
    }
  }
  