.hawk-accordion {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  font-family: Arial, sans-serif;
}

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

.accordion-title {
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  background: #f7f7f7;
  border: none;
  cursor: pointer;
  transition: 0.3s;

  display: flex;
  justify-content: space-between !important;
  align-items: center;
}

/* Arrow icon */
.accordion-title::after {
  content: "›";
  font-size: 20px;
  transform: rotate(90deg);
  transition: 0.3s;
}

/* Active state arrow rotate */
.accordion-title.active::after {
  transform: rotate(-90deg);
}

.accordion-title:hover {
  background: #000;
  color: #fff;
}

.accordion-content {
  display: none;
  padding: 15px 20px;
  background: #fff;
  line-height: 1.6;
}