body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #1f2937;
    background-color: #f9fafb;
  }
  
  header {
    background-color: whitesmoke;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(25, 64, 162, 0.05);
    font-weight: bold;
  }
  
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .logo-icon {
    font-size: 2rem;
  }
  
  /* .tagline.center {
    font-size: 1rem;
    color: #4b5563;
    margin-top: 0.5rem;
    font-style: italic;
  } */

  .tagline.center {
    height: 0.5px; /* Optional: controls the blank line */
    margin-top: 1rem;
  }
  
  nav {
    background-color: #3b82f6;
    text-align: center;
    padding: 1rem;
  }
  
  nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 600;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  main {
    padding: 2rem;
    max-width: 900px;
    margin: auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  section {
    margin-bottom: 2rem;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #1f2937;
    color: white;
    font-size: 0.9rem;
  }
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
  }

  .logo-container.center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo-img {
    position: absolute;
    top: 10px;   /* Adjust the distance from the top */
    left: 10px;
    max-height: 3cm; /* Bigger logo */
    width: auto;
  }

  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1rem;
  }
  
  /* .about-text {
    flex: 1 1 300px;
    font-size: 1rem;
    color: #374151;
  } */

  .about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  
  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
  }
  
  section {
    transition: opacity 0.4s ease;
  }