/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styling */
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
  }
  
  /* Container */
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  /* Navbar styling */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5rem 0;
  }
  
  /* Navbar content container */
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Logo */
  .logo img {
    height: 40px;
  }
  
  /* Navigation links */
  nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #001a4f;
  }
  
  /* Team Section */
  .team {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 1.5rem;
  }
  
  .team-member {
    text-align: center;
    max-width: 200px;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #001a4f;
    margin-bottom: 0.5rem;
  }
  
  /* Footer styling */
  .footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
    margin-top: 2rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: left;
  }
  
  .footer-content div {
    margin-bottom: 1rem;
  }
  
  .footer-content h4 {
    margin-bottom: 0.5rem;
  }
  