.accordion {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.accordion-item.active .accordion-header {
  background: #025c89;
  color: #fff;
}
.accordion-item.active .accordion-header .arrow {
  border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #f9f9f9;
  font-weight: 600;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #ececec;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1rem;
}

.accordion-content p {
  margin: 1rem 0;
}

.accordion-item.active .accordion-content {
    max-height: max-content;
    padding: 1rem;
}

.arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 0.5rem;
}

.accordion-item.active .arrow {
  transform: rotate(-135deg);
}

@media (max-width: 600px) {
  .accordion-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .arrow {
    margin-top: 0.5rem;
  }
}