body {
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333333;
  margin: 0;
  padding: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-style: normal;
}

.main-content { max-width: 800px; margin: 0 auto; }

header {
  text-align: center;
  margin-bottom: 20px;
}

header img {
  max-width: 150px;
  display: block;
  margin: 0 auto 10px;
}

ul {
  list-style: disc;
  padding: 0px;
  padding-left: 32px;
}

blockquote {
  background: #eee;
  padding: 20px;
  margin: 10px 0;
  border-left: 5px solid #ccc;
  font-size: 20px;
}

.red { color: red; }
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-reverse { flex-direction: row-reverse; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-space-between { justify-content: space-between; }
.justify-space-around { justify-content: space-around; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.gap-16 { gap: 16px; }
.gap-32 { gap: 32px; }
.gap-64 { gap: 64px; }
.w-50 { width: 50%; }
.w-100 { width: 100%; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.align-center { align-items: center; }

.section.report img { max-width: 300px; }
.img-container { min-height: 96px; }

/* Review Section Styling */
.review-section {
  padding: 20px;
  text-align: center;
}

.review-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.review-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: 175px;
  background-color: #f8f8f8;
  border: 1px solid #333;
  border-radius: 4px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.review {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.review.active {
  opacity: 1;
}

.review p {
  font-size: 1.2em;
  line-height: 1.4;
  color: #333;
  padding: 20px;
}

img { max-width: 100%; }

@media (max-width: 1200px) {
  .review-container { height: 150px; }
  .review p { font-size: 1em; }
  .review-section { padding: 0px; }
  .m-wrap { flex-wrap: wrap; }
  .m-100 { width: 100%; }
  .m-justify-center { justify-content: center; }
  .m-align-center { align-items: center; }
}

@media (max-width: 600px) {
  .review-container { height: 300px; }
}