/* body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Arrial", sans-serif;
  margin: 0 auto;
  max-width: 1200px;
}

/* header */
.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 3px;
  color: #3a3837;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.logo {
  font-weight: bold;
  font-size: 20px;
  color: #3a3837;
}

i {
  color: #8b7d76;
}



.nav-links a {
  text-decoration: none;
  font-size: 1rem;
  color: #3a3837;
  margin-left: 15px;
}
.nav-links a:hover {
  color: #cac2bd;
}




.section {
  padding: 40px 20px; 
  background: #fff;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.title {
  max-width: 700px;
  margin: 0 auto 60px; 
  text-align: center;
}

.title h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #222;
}

.title p {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.6;
}


.content-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.content {
  flex: 1 1 400px;
  max-width: 600px;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.content h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #222;
}

.content p {
  margin-bottom: 16px;
}

.image-section {
 
  max-width: 500px;
  text-align: center;
  height: auto;
}

.image-section img {
  max-width: 100%;
  border-radius: 12px;
  
}





/* TEAM SECTION  */


.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: white;
  border-radius: 8px;
  text-align: center;
}

.team-section h1 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.team-members-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; 
  margin-bottom: 60px;
}


.group-member {
  background-color: #fff;
  padding: 20px;
  flex: 1 1 280px; 
  max-width: 280px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  min-width: 220px; 
}



.group-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  background-color: transparent;
  
}

.group-member h3 {
  font-size: 1.375rem;
  margin: 10px 0 6px;
  font-weight: 700;
  color: #333;
}

.group-member h5 {
  font-size: 0.875rem;
  margin: 0;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.group-member p {
  font-size: 1rem;
  margin-top: 12px;
  line-height: 1.5;
  color: #555;
}


@media (max-width: 480px) {
  .group-member {
    flex-basis: 100%;
    max-width: 100%;
    min-width: unset;
  }
}




/* footer */

footer {
  background-color: #151722;
  color: white;
  text-align: left;
  padding: 15px 150px;
  margin-top: 30px;
}

footer i {
  color: white;
  font-size: 20px;
  text-align: center;
  padding-top: 15px;
}

.footer-navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 10px;
  border-bottom: 0.1px solid #898a8a;
}

footer p {
  color: #aaaeb1;
  font-size: 100;
  line-height: 1.6;
}
.social-media. {
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: column;
  justify-content: space-between;
  padding: 50px 10px;
  margin: 10px 0;
  border-bottom: 0.1px solid #898a8a;
}
.quick-links {
  line-height: 1.6;
}
.help {
  line-height: 1.6;
}

.contact {
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  flex-wrap: column;
  justify-content: space-between;
  padding: 5px 10px;
  margin-top: 5px;
}

footer a {
  text-decoration: none;
  font-size: 1rem;
  color: #aaaeb1;
  margin-left: 15px;
}

footer a:hover {
  color: #cac2bd;
}


  @media screen and (max-width: 768px) {

 .navbar {
    display: flex;
    justify-content: center;
    flex-direction: column;
   
  }

  .nav-links {
    flex-direction: column;
 
    margin-top: 10px;
  }

  @media screen and (max-width: 480px) {

  .navbar {
    display: flex;
    justify-content: center;
    flex-direction: column;
  
  }

  .nav-links {
    flex-direction: column;

    margin-top: 10px;
  }

.footer-links,
  .footer-navbar,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    padding: 15px 20px;
  }


}