.accordion-wrapper {
  padding: 20px;
  font-family: 'Urbanist', sans-serif;
  background-color: #f9f6f2;
  border-radius: 10px;
}

.accordion {
  border-top: 1px solid #ccc;
}

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

.accordion-header {
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
}

.icon-wrapper {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: #0c6cb8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.chevron-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.accordion-header.active .chevron-icon {
  transform: rotate(180deg);
}

.accordion-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1b1b1b;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 48px;
  font-size: 0.95rem;
  color: #333;
}

.accordion-content p {
  margin: 14px 0;
  line-height: 1.6;
}
