* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .footer {
    background-color: rgb(0, 0, 0);
    color: #fefefe;
   
    bottom: 0;
    left: 0;
  }
  
  .footer .heading {
    color: #fefefe;
    max-width: 1010px;
    width: 90%;
    text-transform: uppercase;
    margin: 0 auto;
    margin-bottom: 3rem;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  }
  
  .footer .content {
    display: flex;
    justify-content: space-evenly;
    margin: 1.5rem;
    padding-top: 20px;
  }
  
  .footer .content p {
    margin-bottom: 1.3rem;
  }
  
  .footer .content a {
    text-decoration: none;
    color: #fefefe;
  }
  
  .footer .content a:hover {
    border-bottom: 1px solid #971717;
  }
  
  .footer .content h4 {
    margin-bottom: 1.3rem;
    font-size: 19px;
  }
  
  footer {
    align-items: center;
    text-align: center;
    padding-bottom: 10px;
  }
  
  footer hr {
    margin: 2rem 0;
  }
  
  @media (max-width: 767px) {
    .footer .content {
      display: flex;
      flex-direction: column;
      font-size: 14px;
    }
  
    .footer {
      position: unset;
    }
  }
  
  @media (min-width: 768px) and (max-width: 1024px) {
    .footer .content,
    .footer {
      font-size: 14px;
    }
  }
  
  @media (orientation: landscape) and (max-height: 500px) {
    .footer {
      position: unset;
    }
  }
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
  }
  body {
  
  }
  
  /* Global Styles */

  
  
  /* About Section */
  
  .about {
      
      padding: 100px 0 20px 0;
      text-align: center;
  }
  
  .about h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }
  
  .about p {
      font-size: 1rem;
      color: #323030;
      max-width: 800px;
      margin: 0 auto;
  }
  
  .about-info {
      margin: 2rem 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: left;
  }
  
  .about-img {
      max-width: 100px;
      height: auto;
  
  }
  
  .about-img img {
      width: 100%;
      height: 100%;
      border-radius: 5px;
      object-fit: contain;
  }
  
  .about-info p {
      font-size: 1.3rem;
      margin: 0 2rem;
      text-align: justify;
  }
  
  button {
      border: none;
      outline: 0;
      padding: 10px;
      margin: 2rem;
      font-size: 1rem;
      color: white;
      background-color: #40b736;
      text-align: center;
      cursor: pointer;
      width: 15rem;
      border-radius: 4px;
  }
  
  button:hover {
      background-color: #1f9405;
  }
  
  /* Team Section */
  
  .team {
      padding: 30px 0;
      text-align: center;
      
  }
  
  .team h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      
      
  }
  
  .team-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
  }
  
  .card {
      background-color: white;
      border-radius: 6px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
      width: 18rem;
      height: 25rem;
      margin-top: 10px;
  }
  
  .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
  }
  
  .card-img {
      width: 18rem;
      height: 12rem;
  }
  
  .card-img img {
      width: 100%;
      height: 100%;
      object-fit: fill;
  }
  
  .card-info button {
      margin: 2rem 1rem;
  }
  
  .card-name {
      font-size: 2rem;
      margin: 10px 0;
  }
  
  .card-role {
      font-size: 1rem;
      color: #888;
      margin: 5px 0;
  }
  
  .card-email {
      font-size: 1rem;
      color: #555;
  }
  .button a {
      color: #fff;
      text-decoration: none;
  }
  
  /* Footer */
  
  
  @media (max-width: 768px) {
      nav {
          display: block;
      }
  
      .logo {
          text-align: center;
      }
  
      .nav-links {
          margin-top: 1rem;
          justify-content: space-between;
      }
  
      .nav-links li {
          margin-right: 0;
      }
  
      .about h1 {
          font-size: 2rem;
      }
  
      .about p {
          font-size: 0.9rem;
      }
  
      .about-info {
          flex-direction: column;
          text-align: center;
      }
  
      .about-img {
          width: 60%;
          height: 60%;
          margin-bottom: 1rem;
      }
  
      .about-info p {
          margin: 1rem 2rem;
      }
  
      .about-info button {
          margin: 1rem 2rem;
          width: 10rem;
      }
  
      .team {
          margin: 0 1rem;
      }
  }
  