/* style/index-review-tot88.css */
:root {
  --primary-color: #1A202C; /* Dark Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #F0F0F0;
  --text-dark: #1A202C;
  --background-light: #FFFFFF;
  --background-dark: #0D1117;
  --border-color: #333C4A;
}

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

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

.page-index-review-tot88 h1, .page-index-review-tot88 h2, .page-index-review-tot88 h3 {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-review-tot88 h1 {
  font-size: 3em;
  text-align: center;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-tot88 h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-index-review-tot88 h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-index-review-tot88 p {
  margin-bottom: 15px;
}

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

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

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

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

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

.page-index-review-tot88 .hero-content h1 {
  color: var(--secondary-color);
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-index-review-tot88 .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88 .cta-button:hover {
  background: #FFEB3B; /* Slightly lighter gold */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styles */
.page-index-review-tot88 section {
  padding: 60px 0;
  margin-bottom: 30px;
}

.page-index-review-tot88 section:nth-of-type(odd) {
  background-color: var(--background-light);
}

.page-index-review-tot88 section:nth-of-type(even) {
  background-color: #F8F8F8; /* Slightly off-white */
}

.page-index-review-tot88 section h2 {
  color: var(--primary-color);
  margin-bottom: 40px;
}

/* Intro Section */
.page-index-review-tot88 .section-intro h2 {
  color: var(--primary-color);
}

.page-index-review-tot88 .section-intro > p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 1.1em;
}

.page-index-review-tot88 .intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}