#toggle-content {
    width: 1200px;
    max-width: 100%;
    font-family: Proxima Nova;
    
    /* Centering */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertically */
    align-items: center; /* Centers horizontally */
    min-height: 100vh; /* Ensures full-page centering */
    margin: 0 auto; /* Ensures horizontal centering */
    text-align: center; /* Centers inline text */
}
}

.content-toggle {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

tr {
  vertical-align: text-top;
  border-bottom: 1px solid #C3C5CC;
}

th {
  border-bottom: 1px solid #8C52FF;
  font-size: 20px;
  font-weight: 600;
}
.first-col {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2px;
  width: 200px;
}

.first-col.color-v {
  color: #8C52FF;
  font-weight: 600;
  padding-bottom: 22px;
}

tbody {
  font-size: 16px;
  letter-spacing: 0.16px;
}


table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}

th, td {
            padding: 5px 10px;
            text-align: left;
}

td:nth-child(2) {
  font-size: 20px;
}

@media only screen and (min-width:992px) {

  #toggle-content > div > table:nth-child(4) > thead > tr > th:nth-child(4) {
    width: 200px;
  }
th:nth-child(2) {
  font-size: 20px;
  width: 90px;
}
  }


@media only screen and (max-width: 778px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  .content-toggle  {
    gap: 30px;
  }
  
  .first-col {
    font-weight: 600;
    width: 100%;
  }
  
  thead {
    display: none;
  }

  tr {
    margin-bottom: 10px;
  }

  td {
    text-align: left;
    padding-left: 0;
    padding-top: 10px;
  }

  td::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    text-align: left;
  }
}

thead td, thead th {
  vertical-align: top;
}
.content-toggle strong {
  font-weight: 600;
}

 .toggle-content {
      max-height: 10000px;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }
    .toggle-content.open {
      max-height: 0px; /* Ajustado para el contenido calculado */
      transition: max-height 0.1s ease-in;
    }

.features-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 1200px;
    max-width: 100%;
    margin: 20px auto; /* Centers it horizontally */
    padding: 20px;
    align-items: center; /* Centers items */
    text-align: center;
}

#toggle-button {
  cursor: pointer;
  width: 420px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.list-complete {
  font-family: Proxima Nova;
  font-size: 32px;
  font-weight: 400;
  margin:20;
  padding: 20px;
}