/* style/index-new88-features.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-login: #EA7C07;
  --background-white: #FFFFFF;
  --color-black: #000000;
  --border-light: #e0e0e0;
  --background-light-grey: #f9f9f9;
}

.page-index-new88-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--background-white); /* Assuming body background is white from shared.css */
}

.page-index-new88-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  overflow: hidden;
}

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

.page-index-new88-features__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-index-new88-features__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-new88-features__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 30px;
  border-radius: 12px;
  background: rgba(38, 169, 224, 0.9); /* Using primary color with transparency */
  color: var(--text-light);
  margin-top: -100px; /* Overlap with image slightly for visual effect */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-new88-features__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: var(--text-light);
  font-weight: bold;
}

.page-index-new88-features__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: var(--text-light);
}

.page-index-new88-features__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-new88-features__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  min-width: 180px;
}

.page-index-new88-features__btn-primary {
  background: var(--button-login); /* Use login color for primary action */
  color: var(--text-light);
  border: 2px solid transparent;
}

.page-index-new88-features__btn-primary:hover {
  background: #c76a06; /* Darken login color */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-new88-features__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-index-new88-features__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-new88-features__section {
  padding: 60px 20px;
  text-align: center;
}

.page-index-new88-features__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-weight: bold;
}

.page-index-new88-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-new88-features__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-align: left;
}

.page-index-new88-features__text-block strong {
  color: var(--primary-color);
}

.page-index-new88-features__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-new88-features__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Module 1: Introduction */
.page-index-new88-features__introduction {
  background-color: var(--background-white);
  color: var(--text-dark);
}

/* Module 2: Quick Access */
.page-index-new88-features__quick-access {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-index-new88-features__quick-access .page-index-new88-features__section-title,
.page-index-new88-features__quick-access .page-index-new88-features__text-block {
  color: var(--text-light);
}

.page-index-new88-features__text-small {
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 20px;
}

.page-index-new88-features__button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}