.trainingszeiten-page {
  padding: 60px 20px;
  background-color: #f4f4f4;
  min-height: 70vh;
}

.trainingszeiten-page h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.trainingszeiten-page table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trainingszeiten-page thead {
  background-color: #f0f4f8;
}

.trainingszeiten-page th,
.trainingszeiten-page td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.trainingszeiten-page th {
  color: #2c3e50;
}

.trainingszeiten-page tbody tr:hover {
  background-color: #f9f9f9;
}

.hinweis-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  color: #2c3e50;
}

.hinweis-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hinweis-einleitung,
.hinweis-abschluss {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hinweis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.hinweis-block {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.hinweis-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.hinweis-block h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #2c3e50;
}

.hinweis-block p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.hinweis-section a {
  color: #2c3e50;
  text-decoration: underline;
}

.hinweis-section a:hover {
  color: #1a252f;
}
