#team {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 20px 100px; /* Add margin on the sides (negative margin to offset) */
  margin-bottom: 100px;
}
.column {
  float: left;
  width: 25%;
  margin-bottom: 16px;
  padding: 0 8px;
  justify-content: space-around;
}

.card {
  border: 1px solid #ddd;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Box shadow for a subtle lift */
  text-align: center;
  margin: 8px;
  padding: 10px;
}

.about-section {
  padding: 50px;
  text-align: center;
  background-color: #474e5d;
  color: white;
}

.container {
  padding: 0 16px;
}

.title {
  color: grey;
}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
  border-radius: 10px;
}

.button:hover {
  background-color: #555;
}

#mission {
  text-align: center;
  font-weight: bold;
  margin: 100px;
}

.audio-player {
  background-color: grey;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  justify-content: center;
  align-items: center;
  display: flex;
}

audio {
  width: 100%;
  display: inline-block;
}

.video-player {
  
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

video {
  width: 100%;
  display: block;
}
li{
  margin-bottom: 10px;
  text-align: start;
}

@media screen and (max-width: 768px) {
  .product-card {
      flex: 0 0 calc(50% - 20px); /* 2 products per row on smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .product-card {
      flex: 0 0 calc(100% - 20px); /* 1 product per row on even smaller screens */
  }
}