:root {
  --primary-color: #0056b3; /* Deep blue */
  --secondary-color: #ffc107; /* Bright yellow */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #0a0a0a; /* Body background */
  --bg-light: #f1f3f5;
  --border-color: #e0e0e0;
}

/* Global page styling for index-review-tot88 */
.page-index-review-tot88 {
  background-color: var(--bg-dark); /* Inherit from body for main sections */
  color: var(--text-light); /* Default text color for dark background */
  padding-top: 120px; /* Desktop: Adjust for fixed header */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Container for content */
.page-index-review-tot88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section styling */
.page-index-review-tot88__section {
  padding: 60px 0;
}

.page-index-review-tot88__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-index-review-tot88__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* Hero Banner */
.page-index-review-tot88__hero-banner {
  text-align: center;
  padding: 100px 20px 60px; /* Adjust padding-top for fixed header */
  background: linear-gradient(135deg, var(--primary-color) 0%, #003a72 100%); /* Deeper blue gradient */
  color: var(--text-light);
  border-bottom: 5px solid var(--secondary-color);
}

.page-index-review-tot88__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-review-tot88__main-title strong {
  color: var(--secondary-color);
}

.page-index-review-tot88__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-tot88__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-index-review-tot88__btn-primary,
.page-index-review-tot88__btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: 220px;
  justify-content: center;
}

.page-index-review-tot88__btn-primary {
  background: var(--secondary-color);
  color: var(--text-dark);
  border: 2px solid var(--secondary-color);
}

.page-index-review-tot88__btn-primary:hover {
  background: #e6b000;
  border-color: #e6b000;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-index-review-tot88__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__btn-icon {
  margin-left: 10px;
}

.page-index-review-tot88__rating-summary {
  margin-top: 30px;
  font-size: 1.2em;
  color: var(--text-light);
}

.page-index-review-tot88__rating-stars {
  color: var(--secondary-color);
  margin-right: 10px;
}

.page-index-review-tot88__btn-large {
    padding: 18px 45px;
    font-size: 1.3em;
    min-width: 280px;
}

/* Section Titles */
.page-index-review-tot88__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: inherit; /* Inherit color from parent section */
}

.page-index-review-tot88__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: inherit;
}

/* Content wrapper for image and text */
.page-index-review-tot88__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-index-review-tot88__content-wrapper:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image/text order */
}

.page-index-review-tot88__text-block {
  flex: 1;
  min-width: 300px;
  color: inherit;
}

.page-index-review-tot88__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
  color: inherit;
}

.page-index-review-tot88__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-review-tot88__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

/* Review Grid */
.page-index-review-tot88__review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-tot88__review-card {
  background-color: var(--text-light); /* White background for cards */
  color: var(--text-dark); /* Dark text on white cards */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-review-tot88__review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-review-tot88__card-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index-review-tot88__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-index-review-tot88__review-card p {
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: left; /* Align text left inside card */
  color: var(--text-dark);
}

.page-index-review-tot88__review-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-index-review-tot88__read-more {
  margin-top: auto; /* Push to bottom */
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 5px;
  text-decoration: none;
  font-weight: normal;
  transition: background-color 0.3s ease;
}

.page-index-review-tot88__read-more:hover {
  background-color: #004085;
  color: var(--text-light);
  text-decoration: none;
}

/* Comparison Table */
.page-index-review-tot88__comparison-table {
  overflow-x: auto;
  margin-top: 40px;
  background-color: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-index-review-tot88__comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensure table is wide enough for comparison */
}

.page-index-review-tot88__comparison-table th,
.page-index-review-tot88__comparison-table td {
  border: 1px solid var(--border-color);
  padding: 15px;
  text-align: left;
  color: var(--text-dark);
}

.page-index-review-tot88__comparison-table th {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: bold;
  font-size: 1.1em;
}

.page-index-review-tot88__comparison-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-index-review-tot88__comparison-table td a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* Steps Grid */
.page-index-review-tot88__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-tot88__step-card {
  background-color: var(--text-light);
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-review-tot88__step-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index-review-tot88__step-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-index-review-tot88__step-card p {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left; /* Align text left inside card */
  color: var(--text-dark);
}