.legal-section {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.legal-container {

  width: 100%;
  max-width: 900px;

  background: rgba(20,20,20,0.7);
  backdrop-filter: blur(6px);

  border-radius: 16px;

  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.legal-title {

  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
  margin-bottom: 20px;

  color: white;
}

.legal-subtitle {

  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;

  color: #d7d7d7;
}

.legal-description {

  font-size: 15px;
  line-height: 1.6;
  color: #aaa;
  text-align: center;
  margin-bottom: 40px;
}

/* ITEM */

.legal-item {

  border-bottom: 1px solid rgba(255,255,255,0.05);

}


/* QUESTION */

.legal-question {

  padding: 16px 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;

  font-size: 15px;
  color: #ddd;

  transition: 0.2s;
}

.legal-question:hover {
  color: #ff1f32;
}


/* ANSWER */

.legal-answer {

  max-height: 0;
  overflow: hidden;

  color: #aaa;
  font-size: 14px;

  padding: 0 10px;

  transition: all 0.3s ease;
}


/* ACTIVE */

.legal-item.active .legal-answer {

  max-height: 200px;
  padding: 10px;

}

.legal-item.active .legal-question span {
  transform: rotate(45deg);
}