/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #000;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2369EC;
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 50px;
    background-color: #EDF4FF;
  }
  
  .hero h1 {
    color: #2369EC;
  }
  
  /* Content Sections */
  .content {
    padding: 30px;
    max-width: 800px;
    margin: auto;
  }
  
  .content h2 {
    color: #2369EC;
    margin-bottom: 15px;
  }
  
  /* Gallery */
  .gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
  }
  
  /* Footer */
  footer {
    background-color: #3A4558;
    color: white;
    text-align: center;
    padding: 10px;
  }
  
  .contact-icons img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  .contact-icons a {
    text-decoration: none;
  }

