.accordion {
  border: 1px solid #2c3e50;
  border-radius: 5px;
  max-width: 100%;
  font-family: 'Montserrat', sans-serif;
}

.accordion-item {
  border-bottom: 1px solid #2c3e50;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background-color: #34495e;
  color: #ecf0f1;
  cursor: pointer;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover,
.accordion-header.active {
  background-color: #1abc9c;
  color: #ffffff;
}

.accordion-header::after {
  content: '\25BC';
  font-size: 0.8em;
  transition: transform 0.3s ease;
  color: #ecf0f1;
}

.accordion-header.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #ecf0f1;
  padding: 0 20px;
}

.accordion-content p {
  margin: 15px 0;
  font-size: 1em;
  color: #2c3e50;
}
