.training-box {
  padding: 40px;
  background-color: #ffffff;
  border: 2px solid rgb(57, 136, 143);
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.training-header {
  text-align: center;
  margin-bottom: 30px;
}

.training-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: rgb(57, 136, 143);
}

.training-header p {
  font-size: 18px;
  color: #296085;
}

hr.divider {
  margin: 30px 0;
  border: 0;
  border-top: 2px solid rgb(57, 136, 143);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.schedule-table td {
  padding: 10px 15px;
  text-align: left;
}

.schedule-table .time {
  font-size: 20px;
  font-weight: bold;
  color: rgb(57, 136, 143);
}

.schedule-table .session-title {
  font-size: 24px;
  font-weight: 600;
  color: rgb(57, 136, 143);
}

.schedule-table .details {
  font-size: 18px;
  color: #333;
  padding-left: 30px;
}

.schedule-table .details strong {
  font-weight: bold;
}

@media (max-width: 768px) {
  .training-header h2 {
    font-size: 28px;
  }

  .schedule-table td {
    font-size: 16px;
    padding: 8px 12px;
  }
}


.trainers-section {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.trainers-title {
  font-size: 36px;
  font-weight: 600;
  color: rgb(57, 136, 143);
  margin-bottom: 40px;
}

.trainers-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.trainer {
  width: 180px;
  text-align: center;
  padding: 20px;
}

.trainer-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgb(57, 136, 143); /* Border around the image */
}

.trainer h4 {
  font-size: 20px;
  font-weight: 600;
  color: rgb(57, 136, 143);
  margin-top: 10px;
}

.trainer p {
  font-size: 16px;
  color: #333;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .trainers-container {
    justify-content: center;
  }

  .trainer {
    width: 150px;
  }

  .trainers-title {
    font-size: 28px;
  }

  .trainer h4 {
    font-size: 18px;
  }

  .trainer p {
    font-size: 14px;
  }
}



/* Apply to container */
.container-960 {
  max-width: 960px; /* Set maximum width to 960px */
  margin: 0 auto; /* Center the content horizontally */
}