/* style/promotions-cashback.css */

:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #1a1a1a;
  --card-bg-light: #ffffff;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --border-color: #e0e0e0;
}

.page-promotions-cashback {
  background-color: var(--bg-dark); /* Consistent with body background */
  color: var(--text-light); /* Light text on dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions-cashback__hero-section {
  position: relative;
  padding: 100px 0 60px; /* Adjust padding to make space for header and content */
  padding-top: var(--header-offset, 120px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-promotions-cashback__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: 1;
}

.page-promotions-cashback__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-promotions-cashback__hero-section .page-promotions-cashback__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-promotions-cashback__main-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-cashback__description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-cashback__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark); /* Changed for contrast on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-promotions-cashback__cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions-cashback__text-block {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-cashback__benefits-section,
.page-promotions-cashback__how-to-section,
.page-promotions-cashback__faq-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.page-promotions-cashback__types-section,
.page-promotions-cashback__terms-section,
.page-promotions-cashback__cta-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.page-promotions-cashback__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-promotions-cashback__light-bg {
  background-color: var(--card-bg-light);
  color: var(--text-dark);
}

.page-promotions-cashback__card {
  background: var(--card-bg-dark);
  color: var(--text-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}