/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-dark);
}

.accordion-item {
  border: 1px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.accordion-item:not(:first-of-type){
  border: 1px solid var(--accent);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  word-break: break-word;
  hyphens: auto;
  white-space: unset;
  line-height: normal;
}

.chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #e53935;
  border-bottom: 2px solid #e53935;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion-item.open .chevron {
  transform: rotate(-135deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-item.open .accordion-content {
  padding-bottom: 1.5rem;
  max-height: 400px;
}

.accordion-content p {
  margin: 0;
  line-height: 1.5;
}

.highlight {
  color: #e53935;
  font-weight: 600;
}

@media (max-width: 600px) {
  .accordion-item {
    border-width: 1.5px;
  }

  .accordion-header {
    padding: 1rem;
    font-size: 0.95rem;
    gap: 0.75rem;
  }

  .accordion-content {
    padding: 0 1rem;
  }

  .accordion-item.open .accordion-content {
    padding-bottom: 1rem;
  }
}