.GCUaccordion {
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

/* Hide checkbox */
.accordion-item input {
  display: none;
}

/* Header */
.accordion-header {
  display: block;
  background: #4f6785;
  color: #fff;
  padding: 14px 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

/* Arrow */
.accordion-header::after {
  content: "▾";
  position: absolute;
  right: 16px;
  transition: transform 0.3s ease;
}

/* Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f4f4f4;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Links */
.accordion-content a {
  padding: 12px 16px;
  text-decoration: none;
  color: #004b87;
  border-top: 1px solid #ddd;
}

.accordion-content a:hover {
  background: #e6eef7;
}

/* Open state */
.accordion-item input:checked ~ .accordion-content {
  max-height: 300px; /* large enough for content */
}

.accordion-item input:checked + .accordion-header::after {
  transform: rotate(180deg);
}
