.faq-container {
  width: 100%;
  display: flex;
  flex-direction: row;
}

#accordeon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  min-height: 400px;
}

.acc-head {
  width: 100%;
  background-color: #333;
  color: #eee;
  padding: 20px 30px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 18px;
  transition: 300ms ease;
}

.acc-head:hover {
  background-color: #444;
}

.acc-body {
  width: 100%;
  background-color: #eee;
  color: #222;
  padding: 50px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  display: none;
  margin-bottom: 20px;
}

.acc-head:active {
  transform: scale(0.95);
}
