/* style/resources-8us-latest-promotions.css */

:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-light: #ffffff;
  --text-dark: #0a0a0a;
  --background-dark: #0a0a0a;
  --background-light: #f0f0f0;
  --card-background-dark: rgba(255, 255, 255, 0.1);
  --border-color: #333333;
}

.page-resources-8us-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--background-dark);
  line-height: 1.6;
}

.page-resources-8us-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-8us-latest-promotions__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-8us-latest-promotions__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-8us-latest-promotions__text-dark {
  color: var(--text-dark);
}

.page-resources-8us-latest-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  padding-top: 20px;
}

.page-resources-8us-latest-promotions__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

/* Hero Banner Section */
.page-resources-8us-latest-promotions__hero-banner {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0; /* Assuming shared.css handles body padding-top: var(--header-offset) */
}

.page-resources-8us-latest-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-8us-latest-promotions__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-8us-latest-promotions__hero-content {
  text-align: center;
  color: var(--text-light);
  max-width: 900px;
  padding: 20px;
  z-index: 3;
}

.page-resources-8us-latest-promotions__hero-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-8us-latest-promotions__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
}

.page-resources-8us-latest-promotions__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-resources-8us-latest-promotions__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark);
  border: none;
}

.page-resources-8us-latest-promotions__btn-primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-resources-8us-latest-promotions__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: none;
}

.page-resources-8us-latest-promotions__btn-secondary:hover {
  background-color: #7a0000;
  transform: translateY(-2px);
}

/* General Content Images */
.page-resources-8us-latest-promotions__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Promotions Section */
.page-resources-8us-latest-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-8us-latest-promotions__promo-card {
  background-color: var(--card-background-dark);
  border-radius: 12px;
  overflow: hidden;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-8us-latest-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-8us-latest-promotions__promo-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-8us-latest-promotions__promo-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-8us-latest-promotions__promo-text {
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--text-light);
}

/* Registration Section */
.page-resources-8us-latest-promotions__registration-section {
  padding: 60px 0;
}

.page-resources-8us-latest-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-8us-latest-promotions__step-card {
  background-color: var(--text-light);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-8us-latest-promotions__step-icon {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  background-color: var(--background-light);
}

.page-resources-8us-latest-promotions__step-title {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.page-resources-8us-latest-promotions__step-text {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-resources-8us-latest-promotions__notes-card {
  background-color: var(--card-background-dark);
  border-radius: 12px;
  padding: 30px;
  margin-top: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-resources-8us-latest-promotions__notes-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-8us-latest-promotions__notes-list {
  list-style: disc inside;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 20px;
  color: var(--text-light);
}

.page-resources-8us-latest-promotions__notes-list li {
  margin-bottom: 10px;
}

/* Benefits Section */
.page-resources-8us-latest-promotions__benefits-section {
  padding: 60px 0;
}

.page-resources-8us-latest-promotions__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-8us-latest-promotions__benefit-item {
  background-color: var(--card-background-dark);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-8us-latest-promotions__benefit-item:hover {
  transform: translateY(-5px);
}

.page-resources-8us-latest-promotions__benefit-icon {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-resources-8us-latest-promotions__benefit-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-8us-latest-promotions__benefit-text {
  font-size: 16px;
  color: var(--text-light);
}

.page-resources-8us-latest-promotions__cta-bottom,
.page-resources-8us-latest-promotions__cta-final {
  text-align: center;
  margin-top: 60px;
}

/* FAQ Section */
.page-resources-8us-latest-promotions__faq-section {
  padding: 60px 0;
}

.page-resources-8us-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-resources-8us-latest-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--card-background-dark);
}