

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

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px;
}

h1 {
  color: #FF6969;
  text-align: center;
  margin-top: 100px;
}

/* About the Organization section */
.about-section {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 100px;
}

.about-title {
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 30px;
  color: #444444 ;
  text-decoration: underline;
}

.about-description {
  font-size: 16px;
  color: #444444 ;
}

/* Employee containers */
.employee-container {
  display: flex;
  margin-bottom: 40px;
  align-items: center;
  background-color: #FF6969;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.5s ease-out;
  transition: transform 0.3s ease;
  width: 100%;
}

.employee-container:hover {
  transform: scale(1.05);
}

.our-team{
  margin-top: 40px;
  font-size: 30px;
  font-weight: bold;
  color: #444444 ;
  text-decoration: underline;
}


.employee-image {
  flex: 0 0 200px;
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
}

.employee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.employee-details {
  flex: 1;
}

.employee-name {
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.employee-position {
  font-style: italic;
  margin-bottom: 10px;
  color: #ffffff;
}

.employee-bio {
  margin-bottom: 10px;
  color: #ffffff;
}

/* Responsive styles */
@media (max-width: 768px) {
  .container {
      padding: 20px;
  }

  .employee-container {
      flex-direction: column;
      align-items: flex-start;
  }

  .employee-image {
      margin-right: 0;
      margin-bottom: 10px;
  }
}

/* Animation styles */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}