:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212; /* From shared.css body background */
  --card-bg-dark-mode: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark background */
  --border-color-dark-mode: rgba(255, 255, 255, 0.15);
}

.page-resources-generous-login-rewards-explained {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Dark body background, so light text */
  background-color: var(--bg-dark); /* Ensure consistency if body background is overridden */
}

/* Fixed navigation bar padding for the first content section */
.page-resources-generous-login-rewards-explained__title-section {
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1A3A77 100%);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-generous-login-rewards-explained__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-generous-login-rewards-explained__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Gold for main title */
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-resources-generous-login-rewards-explained__title-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-generous-login-rewards-explained__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-resources-generous-login-rewards-explained__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Gold button */
  color: var(--primary-color); /* Dark blue text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure button adapts to mobile width */
  box-sizing: border-box;
}

.page-resources-generous-login-rewards-explained__cta-button:hover {
  background: #E6C200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-generous-login-rewards-explained__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px; /* Spacing for sections */
}

.page-resources-generous-login-rewards-explained__sub-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-resources-generous-login-rewards-explained__content-area {
  padding: 60px 0;
}

.page-resources-generous-login-rewards-explained__content-area p,
.page-resources-generous-login-rewards-explained__content-area li {
  color: var(--text-light); /* Light text for dark background */
  margin-bottom: 15px;
}

.page-resources-generous-login-rewards-explained__content-area ul,
.page-resources-generous-login-rewards-explained__content-area ol {
  list-style-position: inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-resources-generous-login-rewards-explained__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: var(--card-bg-dark-mode); /* Card-like background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-generous-login-rewards-explained__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-resources-generous-login-rewards-explained__image-responsive {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-generous-login-rewards-explained__text-content {
  flex: 1;
  color: var(--text-light);
}

.page-resources-generous-login-rewards-explained__text-content h3 {
  color: var(--secondary-color);
}

.page-resources-generous-login-rewards-explained__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

/* FAQ Section Styles */
.page-resources-generous-login-rewards-explained__faq-section {
  padding: 60px 0;
  background-color: var(--primary-color); /* Dark blue background */
  color: var(--text-light);
}

.page-resources-generous-login-rewards-explained__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-generous-login-rewards-explained__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--card-bg-dark-mode);
  border: 1px solid var(--border-color-dark-mode);
}

.page-resources-generous-login-rewards-explained__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: var(--text-light);
}

.page-resources-generous-login-rewards-explained__faq-item.active .page-resources-generous-login-rewards-explained__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1); /* Slightly lighter background for expanded answer */
  border-radius: 0 0 5px 5px;
}