

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: #333;
  line-height: 1.6;
}

.header {
  background-color: #23B14D;
  color: white;
  padding: 30px 0;
  font-size: 32px;
  font-weight: bold;
  text-align: left;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

.about {
  background-color: #f5f5f5;
  padding: 20px;
  border-left: 5px solid #23B14D;
  margin-bottom: 40px;
  border-radius: 6px;
}

.doc-list {
  list-style: none;
  padding: 0;
}

.doc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.doc-list a {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 140px;
  padding: 10px 15px;

  text-decoration: none;
  color: #23B14D;
  font-weight: bold;

  border: 2px solid #23B14D;
  border-radius: 5px;

  transition: all 0.2s ease;
}

.doc-list a:hover {
  background-color: #23B14D;
  color: white;
}
.episode-title {
  color: #777;
  font-weight: 500;

  flex: 1;
  min-width: 200px;
}
.divider {
  height: 0;
  border: none;
  border-top: 3px solid #28a745;  
}
.section-title {
  display: block;
  width: 100%;
  border-bottom: 3px solid #23B14D;
  padding-bottom: 6px;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.2rem;
   color: #444;
}
.contact-title {
  font-weight: bold;
  color: #444;
}
@media (max-width: 600px) {
  .doc-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .doc-list a {
    width: 100%;
    max-width: 260px;
  }

  .episode-title {
    margin-left: 0;
    min-width: auto;
  }
}