.accordion-item {
  margin-bottom: 15px;
}

.accordion-header {
  width: 100%;
  padding: 15px 30px;
  background-color: #FFBEAA;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
}

.accordion-header:hover,
.accordion-header:focus {
  background-color: #fea78c;
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
  background-color: #FFEEE9;
  font-size: 16px;
}

.accordion-content-inner {
  padding: 30px 45px;
}

.accordion-content p {
  padding-bottom: 0;
}

.icon {
  transition: transform 0.3s ease;
  display: inline-block;
  font-size: 24px;
  line-height: 1;
}

.icon.rotate {
  transform: rotate(135deg);
}

.info {
  background-color: #ddffdd;
  border-left: 6px solid #04AA6D;
  padding: 10px;
  font-size: 10px;
}

.info-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #003;
  background-color: #fff;
  border: 2px solid #003;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.info-icon:hover {
  background-color: #003;
  border-color: #003;
  color: white;
}