.apply-to-serve-on-a-commission .introduction {
  padding: 10px 0 50px;
}

.apply-to-serve-on-a-commission section {
  padding: 50px 0;
}

.apply-to-serve-on-a-commission .title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

.apply-to-serve-on-a-commission .header {
  font-weight: 700;
}

.apply-to-serve-on-a-commission li {
  font-size: 18px;
}

.apply-to-serve-on-a-commission .header::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../../images/star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
  flex-shrink: 0;
}
.apply-to-serve-on-a-commission .header::after {
  content: "";
  display: block;
  padding-block-start: 4px;
  border-block-start: 4px solid #41b6e6;
  width: 24px;
  margin-top: 8px;
}

.apply-to-serve-on-a-commission section:nth-of-type(even) {
  background-color: #e1f3f8;
}

.apply-to-serve-on-a-commission .external-link {
  display: inline-block;
  background: #0075bb;
  color: white;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  margin: 10px 0;
}

.collapsible-header {
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  user-select: none;
}

.toggle-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2341B6E6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.collapsible-section.active .toggle-icon {
  transform: translateY(-50%) rotate(90deg);
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.collapsible-section.active .collapsible-content {
  margin-top: 15px;
}
