.speaker-box img {background-color: #fff;}
   .council-member-list ul li {width: 24.6%;}
      
     @media (max-width: 767px) {
    .council-member-list ul li {
        width: 100%;
    }
} 
      

.left, .right {
  /* background: #fff; */
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.left {
  flex: 1 1 65%;
}

.right {
  flex: 1 1 30%;
}

/* Tabs */
.tabs {
  /* display: flex; */
  border-bottom: 1px solid #ddd;
}

.tab-btn {
  flex: 1;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  background: #f9f9f9;
  border: none;
  border-right: 1px solid #eee;
  transition: background 0.3s, color 0.3s;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active {
  background: #ff3d00;
  color: #fff;
}

.tab-content {
  display: none;
  padding: 20px 0 0;
}

.tab-content.active {
  display: block;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

th, td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

thead th {
  background: #333;
  color: #fff;
}

/* Video Preview */
.video-preview {
  position: relative;
  margin-bottom: 20px;
}

.video-preview img {
  width: 100%;
  border-radius: 6px;
}

.video-preview .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background: rgba(255, 61, 0, 0.8);
  border-radius: 50%;
  padding: 20px;
  text-decoration: none;
}

.video-preview h4 {
  margin-top: 10px;
  text-align: center;
}

/* Course Features */
.course-features {
  margin-top: 30px;
  background: #fefefe;
  padding: 15px;
  border-radius: 6px;
}

.course-features ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.course-features li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.course-features li:last-child {
  border-bottom: none;
}

.label {
  font-weight: bold;
  color: #333;
}

.value {
  color: #ff3d00;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left, .right {
    flex: 1 1 100%;
  }
}