.accordion {
  max-width: auto;
  margin: 1rem auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-item + .accordion-item {
  border-top: 1px solid #e5e7eb;
}

.accordion-header {
  width: 100%;
  padding: 1.25rem;
  background: none;
  border: none;
  border-left: 4px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #b62025;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, border-left-color 0.2s ease;
}

.accordion-header:hover, .accordion-header:focus {
  background: #f9fafb;
  border-left: 4px solid #b62025;
  outline: none;
}

.accordion-header .icon {
  transition: transform 0.3s ease;
  color:  #73bdd8;
  font-size: 28px;
  line-height: 1;
}

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

.accordion-item.active .accordion-header {
  border-left: 4px solid #b62025;
  background: #f9fafb;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #ffffff;
}

.accordion-content-inner {
  padding: 1.25rem;
}

.accordion-content p {
  margin: 0 0 1rem 0;
  color: #111827;
  line-height: 1.6;
}

.accordion-content a {
  color: #0000ee; 
  text-decoration: none;
  font-weight: 700;
}

.accordion-content a:hover {
  text-decoration: underline;
  font-weight: 700;
}

.accordion-header:focus-visible {
  outline: 3px solid #73bdd8;
  outline-offset: 2px;
}

