.faq-container {
  width: 80%;
  margin: 120px auto 20px auto ;
  padding: 20px;
}

.faq-container-title {
  text-transform: uppercase;
  font-size: 52px;
  font-weight: 500;
  color: #303030;
  text-align: center;
  padding-bottom: 20px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.faq-title {
  display: flex;
  align-items: center;
  font-weight: 400; /* Regular font weight */
  cursor: pointer;
  font-size: 28px;
  padding: 10px 0;
}

.faq-title i {
  margin-right: 10px;
}

.faq-title.active {
  font-weight: 500; /* Medium font weight */
}

.faq-content {
  display: none;
  font-weight: 300; /* Light font weight */
  padding-left: 25px;
  padding-bottom: 10px;
  font-size: 24px;
}

.faq-content.open {
  display: block;
}

hr {
  border: 0;
  border-top: 2px solid #959595;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .faq-title {
    font-size: 16px;
  }

  .faq-content {
    font-size: 14px;
  }
}
