body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

a {
  color: #0044cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.profile-pic {
  width: 120px;             
  height: 120px;            
  object-fit: cover;        
  border-radius: 50%;        
  margin-bottom: 10px;      
}

#aboutTitle{
  text-align: center;
}

.side-by-side {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 2rem;
}

.navbar {
  background-color: #1e2a38;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar h1 {
  margin: 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar ul li a {
  color: white;
  font-weight: bold;
}

.container {
  padding: 2rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 2rem;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.img-grid img {
  width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.img-grid img:hover {
  transform: scale(1.2);
  z-index: 1;
}

.team {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.member {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  width: 220px;
  text-align: center;
}

footer {
  background-color: #1e2a38;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

#subP {
  font-size: larger;
}

.what {
  padding: 2rem;
  text-align: center;
}

.why {
  max-width: 40%;
  margin: 0 auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

#subP {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.why-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

#mainTitle {
  font-size: 42px;
}

.why-list li {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.8;
  position: relative;
  padding-left: 30px;
}

@media (max-width: 600px) {
  .why {
    padding: 1rem;
  }
  #side-by-side {
    flex-direction:column;
    width:100%;
  }

  .why h2 {
    font-size: 2rem;
  }

  #subP {
    font-size: 1rem;
  }

  .why-list li {
    font-size: 1rem;
  }
}
