.container {
  margin-top: 16px;
  width: 100%;
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: "";
}

.headerContent {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  color: #8a9b8b;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper {
  width: 95%;
  border-radius: 16px;
  padding: 16px;
  padding-top: 4px;
  box-shadow: 0 4px 8px rgba(254, 95, 93, 0.2);
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Images {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 10px;
}

.Images img {
  width: 100%; 
  height: 300px !important;
  object-fit: cover; 
}

@media (max-width: 768px) {
  .Images {
    grid-template-columns: 1fr;
  }
}

.container h1 {
  text-align: center;
}

.content {
  display: flex;
  padding: 32px;
  flex-direction: column;
  color: #16266c;
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .Images {
    grid-template-columns: 1fr; 
  }

  .Images img {
    height: 200px;
  }
}
