/* style/resources-j88-rebate-strategy.css */

:root {
  --j88-primary-color: #26A9E0;
  --j88-secondary-color: #FFFFFF;
  --j88-text-dark: #333333;
  --j88-text-light: #FFFFFF;
  --j88-login-color: #EA7C07;
  --j88-background-color: #FFFFFF;
  --j88-black-color: #000000;
}

.page-resources-j88-rebate-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--j88-text-dark); /* Default text color for light background */
  background-color: var(--j88-background-color);
}

.page-resources-j88-rebate-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-j88-rebate-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background: linear-gradient(135deg, var(--j88-primary-color) 0%, #1a7bb0 100%);
  color: var(--j88-text-light);
  text-align: center;
  overflow: hidden;
}

.page-resources-j88-rebate-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-resources-j88-rebate-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--j88-text-light);
}

.page-resources-j88-rebate-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--j88-text-light);
}

.page-resources-j88-rebate-strategy__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-j88-rebate-strategy__btn-primary,
.page-resources-j88-rebate-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-j88-rebate-strategy__btn-primary {
  background-color: var(--j88-login-color); /* Using login color for primary CTA */
  color: var(--j88-text-light);
  border: 2px solid var(--j88-login-color);
}

.page-resources-j88-rebate-strategy__btn-primary:hover {
  background-color: #c06506; /* Darken #EA7C07 */
  border-color: #c06506; /* Darken #EA7C07 */
}