.training-box {
  padding: 40px;
  background-color: #ffffff;
  border: 2px solid var(--font-color);
  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: var(--font-color);
}

.training-header p {
  font-size: 18px;
  color: var(--font-color);
}

hr.divider {
  margin: 30px 0;
  border: 0;
  border-top: 2px solid var(--bg-color);
}

.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: var(--font-color);
}

.schedule-table .session-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--font-color);
}

.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: var(--font-color);
  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 {
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bg-color);
}

.trainer h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--font-color);
  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;
  }
}

.container-960 {
  max-width: 960px;
  margin: 0 auto;
}

.training-tabs .container-960 {
  max-width: 960px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

.tab-btn {
  appearance: none;
  border: 2px solid var(--font-color);
  background: #fff;
  color: var(--font-color);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .08s ease, background-color .2s ease, color .2s ease;
}

.tab-btn:hover {
  transform: translateY(-1px);
}

.tab-btn.is-active {
  background: var(--font-color);
  color: #fff;
}

.tab-pane {
  display: none;
}

.tab-pane.is-active {
  display: block;
}

.schedule-table td {
  vertical-align: top;
  padding: 14px 16px;
}

.schedule-table .time {
  width: 200px;
  white-space: nowrap;
}

.schedule-table .session-title {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: var(--font-color);
  line-height: 1.25;
  margin-bottom: 2px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.topic {
  color: red;
  font-style: italic;
  display: inline-block;
  margin-top: 4px;
}

.note {
  font-style: italic;
  opacity: .85;
}

@media (max-width: 768px) {
  .tabs-nav {
    gap: 8px;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
  }

  .schedule-table,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table td {
    display: block;
    width: 100%;
  }

  .schedule-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    padding: 10px 0;
  }

  .schedule-table td {
    padding: 8px 0;
  }

  .schedule-table .time {
    width: auto;
    font-size: 16px;
    opacity: .9;
  }

  .schedule-table .session-title {
    font-size: 20px;
  }
}