/* style/index-review-hi88.css */
:root {
  --primary-color: #0A192F; /* Deep Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #F0F2F5; /* Light Gray for dark backgrounds */
  --text-dark: #333333; /* Dark Gray for light backgrounds */
  --background-light: #FFFFFF; /* White */
  --background-dark: #1A2E47; /* Slightly lighter deep blue */
  --border-color: #E0E0E0;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

.page-index-review-hi88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-index-review-hi88-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-index-review-hi88-section {
  padding: 60px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.page-index-review-hi88-section:last-of-type {
  border-bottom: none;
}

.page-index-review-hi88 h1,
.page-index-review-hi88 h2,
.page-index-review-hi88 h3,
.page-index-review-hi88 h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-index-review-hi88 h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--secondary-color);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.page-index-review-hi88 h2 {
  font-size: 2.2em;
  text-align: center;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-index-review-hi88 h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-review-hi88 p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-index-review-hi88 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-hi88 a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* HERO Section */
.page-index-review-hi88-hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--primary-color);
}

.page-index-review-hi88-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-hi88-hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-review-hi88-hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px var(--shadow-color);
}

.page-index-review-hi88-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-review-hi88-hero-content h1 {
  color: var(--secondary-color);
  font-size: 3.5em;
  margin-bottom: 20px;
}

.page-index-review-hi88-hero-content p {
  color: var(--text-light);
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}