/* style/resources-hi88-app-download-guide.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #017439;
  --border-color: #e0e0e0;
  --accent-red: #C30808;
  --accent-yellow: #FFFF00;
}

.page-resources-hi88-app-download-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light); /* Assuming shared.css body bg is light */
}

.page-resources-hi88-app-download-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-hi88-app-download-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-hi88-app-download-guide__section-title {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-hi88-app-download-guide__section-intro {
  font-size: 18px;
  color: var(--text-color-dark);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-hi88-app-download-guide__keyword {
  color: var(--primary-color);
  font-weight: bold;
}

/* Hero Section */
.page-resources-hi88-app-download-guide__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); /* Fixed header spacing */
  background: linear-gradient(135deg, var(--primary-color) 0%, #a8e6cf 100%); /* Light green gradient */
  color: var(--text-color-light);
}