.faq-section2 {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
  font-family: 'Helvetica Neue', sans-serif;
  color: #7A8B76;
  margin-bottom: 100px;
}

.faq-icon2 {
  width: 100%;               /* Asegura que ocupe todo el ancho */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.faq-icon2 img {
  max-height: 150px;
  display: block;
}


.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 0px;
  color: #b7c2b3;
}

.faq-icon {
  width: 60px;
  opacity: 0.2;
}

.faq-h3 {
  font-size: 28px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #A6B4A1;
  text-align: left;
  padding-left: 5px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  padding: 0 5px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  color: #B4B4B4;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
}

.faq-question:hover {
  color: #7A8B76;
}

.faq-question .plus {
  font-size: 20px;
  color: #aaa;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question .plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  font-size: 15px;
  color: #B4B4B4;
  opacity: 0;
  font-weight: 300;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-bottom: 10px;
  line-height: 1.5
}

@media (max-width: 600px) {
  .faq-section {
    padding: 0 10px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-header h2 {
    margin-bottom: 50px;
  }

  .faq-icon2 { 
    margin-top: 25px;
  }

  .faq-icon2 img {
    max-height: 100px;
  }



}
