.custom-accordion {
  max-width: 900px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.accordion-title {
  width: 100%;
  padding: 18px;
  background: #ffffff;
  color: #222;
  border: 1px solid #ddd;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 6px;
  margin-bottom: 8px;
  text-transform: none;
}

.accordion-title:hover {
  background: #f0f0f0;
}

.accordion-content {
  background: #ffffff;
  color: #222;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  padding: 0 18px;
  border: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
  position: relative;
}

.accordion-content.active {
  padding: 18px;
}

.video-link-wrapper {
  text-align: center;
  margin-bottom: 15px;
}

.allowed-link {
  display: inline-block;
  background: #ffd700;
  color: #222;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
}

.allowed-link:hover {
  background: #e6c200;
}

.no-access {
  color: #b00020;
  font-weight: bold;
  margin-top: 10px;
}

.accordion-content img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

