/* Container for all reviews */
.container2rows {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  background-color: #f4f4f4;
  border-radius: 4px;
}

/* Each review block */
.row2 {
  padding: 10px;
  margin-bottom: 15px;
  background-color: #e0e0e0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Table layout */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

/* Header row of each review */
.row1 {
  background-color: #f0f0f0;
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  padding: 10px;
}

/* Left column for spacing or icons */
.col15 {
  width: 15%;
  background-color: #dfefff;
}

/* Right column for review text */
.col85 {
  width: 85%;
  background-color: #ffeedd;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  padding: 10px;
}

/* Review text styling */
.review-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .col15 {
    display: none;
  }
  .col85 {
    width: 100%;
  }
}
