.page-hi8823-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Explicitly set for clarity */
}

.page-hi8823-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hi8823-promotions__hero-section {
  background: linear-gradient(135deg, #26A9E0, #92D7F3); /* Lighter variant of primary color */
  padding: 80px 0;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hi8823-promotions__hero-content {
  max-width: 700px;
  margin-right: 40px;
  text-align: left;
  z-index: 1;
}

.page-hi8823-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hi8823-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-hi8823-promotions__hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.page-hi8823-promotions__hero-image-wrapper {
  position: relative;
  width: 500px;
  height: 375px; /* 4:3 aspect ratio for 800x600 */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-hi8823-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hi8823-promotions__section-title {
  font-size: 2.8em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-hi8823-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-hi8823-promotions__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-hi8823-promotions__button--primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
}

.page-hi8823-promotions__button--primary:hover {
  background-color: #d46f06;
  transform: translateY(-2px);
}

.page-hi8823-promotions__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-hi8823-promotions__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-hi8823-promotions__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #EA7C07;
  color: #FFFFFF;
  margin-top: 30px;
}

.page-hi8823-promotions__button--large:hover {
  background-color: #d46f06;
  transform: translateY(-2px);
}

.page-hi8823-promotions__button--small {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #26A9E0;
  color: #FFFFFF;
  margin-top: 20px;
}

.page-hi8823-promotions__button--small:hover {
  background-color: #1b769d;
  transform: translateY(-2px);
}

.page-hi8823-promotions__button--link {
  background: none;
  border: none;
  color: #26A9E0;
  padding: 0;
  font-weight: bold;
  font-size: 1em;
  text-decoration: underline;
  margin-top: 20px;
}

.page-hi8823-promotions__button--link:hover {
  color: #1b769d;
}

.page-hi8823-promotions__promotions-grid-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-hi8823-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-hi8823-promotions__grid-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hi8823-promotions__grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-hi8823-promotions__grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-hi8823-promotions__grid-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-hi8823-promotions__grid-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-hi8823-promotions__call-to-action-section {
  background-color: #26A9E0;
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-hi8823-promotions__call-to-action-section .page-hi8823-promotions__section-title {
  color: #FFFFFF;
}

.page-hi8823-promotions__call-to-action-section .page-hi8823-promotions__section-description {
  color: #F0F0F0;
}

.page-hi8823-promotions__terms-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-hi8823-promotions__text {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-hi8823-promotions__terms-list {
  list-style: disc inside;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding-left: 20px;
}

.page-hi8823-promotions__terms-item {
  margin-bottom: 10px;
  color: #666666;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-hi8823-promotions__hero-content {
    margin-right: 0;
    text-align: center;
  }

  .page-hi8823-promotions__hero-buttons {
    justify-content: center;
  }

  .page-hi8823-promotions__hero-image-wrapper {
    display: none; /* Hide image on smaller screens to prioritize content */
  }

  .page-hi8823-promotions__hero-title {
    font-size: 2.5em;
  }

  .page-hi8823-promotions__section-title {
    font-size: 2em;
  }

  .page-hi8823-promotions__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hi8823-promotions__hero-section {
    padding: 60px 0;
  }

  .page-hi8823-promotions__hero-title {
    font-size: 2em;
  }

  .page-hi8823-promotions__hero-description {
    font-size: 1em;
  }

  .page-hi8823-promotions__hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-hi8823-promotions__button {
    width: 100%;
  }

  .page-hi8823-promotions__section-title {
    font-size: 1.8em;
  }

  .page-hi8823-promotions__section-description {
    font-size: 0.95em;
  }

  .page-hi8823-promotions__grid-item {
    padding: 25px;
  }

  .page-hi8823-promotions__grid-title {
    font-size: 1.5em;
  }

  .page-hi8823-promotions__grid-text {
    font-size: 0.9em;
  }

  .page-hi8823-promotions__terms-list {
    padding-left: 15px;
  }
}

@media (max-width: 480px) {
  .page-hi8823-promotions__hero-section {
    padding: 40px 0;
  }

  .page-hi8823-promotions__hero-title {
    font-size: 1.8em;
  }

  .page-hi8823-promotions__section-title {
    font-size: 1.5em;
  }

  .page-hi8823-promotions__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }

  .page-hi8823-promotions__button--small {
    font-size: 0.9em;
    padding: 8px 15px;
  }
}