/*STYLE FOR FAQ
/* Set the default display for details to be closed */
details {
  display: block;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 3px;
  overflow: hidden;
}
/* Style the summary tag */
summary {
  display: block;
  padding: 10px;
  font-weight: bold;
  font-size: 1.2em;
  background-color: #f2f2f2;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
/* Style the open details tag */
details[open] summary {
  background-color: #ddd;
}
/* Style the content tag */
details > * {
  padding: 10px;
}


/*table base site info */

.tableabout {
  background-color: #d3dcc6;
  border-collapse: collapse;
  width: 100%;
}

.tableabout td, .tableabout th {
  border: 1px solid #ddd;
  padding: 8px;
}

.tableabout tr:nth-child(even){background-color: #f2f2f2;}

.tableabout th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4CAF50;
  color: white;
}

/*user review class */
.usercommentsreview2 {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}



.usercommentsreview {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.usercommentsreview:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.usercommentsreview h3 {
  font-size: 24px;
  margin-top: 0;
}

.usercommentsreview p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}

.usercommentsreview .author {
  font-size: 14px;
  color: #999;
}