.containerAbout {
  height: 400px;
  width: auto;
  color: #ffffff;
  padding-top: 20px;
  text-align: center;
}

.aboutUs {
  width: auto;
  margin-top: 25px;
  border: solid rgb(202, 202, 202);
  /* background-color: rgb(241, 237, 231); */
}

.aboutUs h1 {
  margin: 0;
  color: black;
  margin-top: 50px;
}

.aboutUs p {
  margin: 10px 0 0;
  color: black;
  margin-bottom: 50px;
}

/* Section Styling */
section {
  padding: 20px;
  margin: 20px 0;
}

/* Mission Section Styling */
#mission {
  background-color: rgb(237, 240, 237);
  border-left: 4px solid rgb(192, 214, 192);
}

#mission h2,
#mission p {
  color: black;
  margin: 0;
  padding: 0 15px;
}

/* Our Story Section Styling */
#our-story {
  color: black;
  background-color: rgb(237, 240, 237);
  border-left: 4px solid rgb(192, 214, 192);
}

#our-story h2,
#our-story p {
  margin: 0;
  padding: 0 15px;
}


.what-sets-us-apart {
  margin-top: 100px;
  text-align: center;
  color: black;
}

#join-us {
  text-align: center;
  padding-top: 0;
}

.joinUs {
  width: auto;
  height: 100px;
  margin-left: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease-in-out;
}

.joinUs:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.gallery1 {
  display: grid;
  grid-template-columns: 280px 280px 280px;
  grid-template-rows: 300px;
  margin-left: -50px;
  column-gap: 5px;
}

.gallery__item--1 {
  margin-left: 16%;
}

.card-content {
  padding: 20px;
}

.card-title {
  margin: 0;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

.card-text {
  margin: 0;
  font-size: 16px;
  color: #777;
  text-align: center;
}

.cardAbout {
  width: 250px;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease-in-out;
}

.cardAbout:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.gallery2 {
  display: grid;
  grid-template-columns: auto;
  margin-left: -50px;
  column-gap: 5px;
  margin-bottom: 100px;
}