/* style/resources-789p-latest-promotions-analysis.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --register-login-font: #FFFF00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --border-color: #e0e0e0;
}

.page-resources-789p-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--secondary-color);
}

.page-resources-789p-latest-promotions-analysis__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-789p-latest-promotions-analysis__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-789p-latest-promotions-analysis__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-resources-789p-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-789p-latest-promotions-analysis__section-title {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
  color: inherit; /* Inherit color from parent section */
}

.page-resources-789p-latest-promotions-analysis__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

/* Hero Section */
.page-resources-789p-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  overflow: hidden;
}

.page-resources-789p-latest-promotions-analysis__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-789p-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-789p-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-resources-789p-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-resources-789p-latest-promotions-analysis__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-789p-latest-promotions-analysis__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-resources-789p-latest-promotions-analysis__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-789p-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-789p-latest-promotions-analysis__btn-primary {
  background: var(--register-button-bg); /* Custom color for register/login */
  color: var(--register-login-font);
  border: 2px solid var(--register-button-bg);
}

.page-resources-789p-latest-promotions-analysis__btn-primary:hover {
  background: darken(var(--register-button-bg), 10%); /* Example of darkening */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-789p-latest-promotions-analysis__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-789p-latest-promotions-analysis__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Grid for cards */
.page-resources-789p-latest-promotions-analysis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-789p-latest-promotions-analysis__card {
  background: var(--secondary-color);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-resources-789p-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-789p-latest-promotions-analysis__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-resources-789p-latest-promotions-analysis__card-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--primary-color);
}

.page-resources-789p-latest-promotions-analysis__card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-789p-latest-promotions-analysis__card-title a:hover {
  text-decoration: underline;
}

.page-resources-789p-latest-promotions-analysis__card-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-789p-latest-promotions-analysis__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-resources-789p-latest-promotions-analysis__card-button:hover {
  background: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
}

/* Ordered List */
.page-resources-789p-latest-promotions-analysis__ordered-list {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
}

.page-resources-789p-latest-promotions-analysis__ordered-list li {
  counter-increment: my-awesome-counter;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
  font-size: 18px;
  line-height: 1.8;
}

.page-resources-789p-latest-promotions-analysis__ordered-list li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-789p-latest-promotions-analysis__list-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-resources-789p-latest-promotions-analysis__ordered-list li p {
  margin: 0;
  color: var(--text-dark);
}

.page-resources-789p-latest-promotions-analysis__ordered-list li a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-resources-789p-latest-promotions-analysis__image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Unordered List */
.page-resources-789p-latest-promotions-analysis__unordered-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
}

.page-resources-789p-latest-promotions-analysis__unordered-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 18px;
  color: var(--text-light);
}

.page-resources-789p-latest-promotions-analysis__unordered-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--register-login-font);
  font-weight: bold;
  font-size: 20px;
}

.page-resources-789p-latest-promotions-analysis__list-strong {
  color: var(--register-login-font);
}

/* Feature Grid */
.page-resources-789p-latest-promotions-analysis__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-789p-latest-promotions-analysis__feature-item {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-789p-latest-promotions-analysis__feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-789p-latest-promotions-analysis__feature-description {
  font-size: 16px;
  color: #555;
}

.page-resources-789p-latest-promotions-analysis__feature-description a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* FAQ Section */
.page-resources-789p-latest-promotions-analysis__faq-section {
  background-color: var(--bg-light);
}

.page-resources-789p-latest-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-resources-789p-latest-promotions-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-789p-latest-promotions-analysis__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 25px;
  opacity: 0;
  background: var(--secondary-color);
}

.page-resources-789p-latest-promotions-analysis__faq-item.active .page-resources-789p-latest-promotions-analysis__faq-answer {
  max-height: 2000px !important; /* Ensure it expands sufficiently */
  padding: 20px 25px !important;
  opacity: 1;
  background: var(--secondary-color);
  border-top: 1px solid var(--border-color);
}

.page-resources-789p-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-789p-latest-promotions-analysis__faq-question:hover {
  background: var(--bg-light);
  border-color: darken(var(--border-color), 5%);
}

.page-resources-789p-latest-promotions-analysis__faq-question:active {
  background: #f0f0f0;
}

.page-resources-789p-latest-promotions-analysis__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-resources-789p-latest-promotions-analysis__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-789p-latest-promotions-analysis__faq-item.active .page-resources-789p-latest-promotions-analysis__faq-toggle {
  color: var(--register-button-bg);
  transform: rotate(45deg); /* Change to minus sign visually */
}

/* Call to Action Section */
.page-resources-789p-latest-promotions-analysis__call-to-action {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-789p-latest-promotions-analysis__call-to-action .page-resources-789p-latest-promotions-analysis__section-title {
  color: var(--text-light);
}

.page-resources-789p-latest-promotions-analysis__call-to-action .page-resources-789p-latest-promotions-analysis__paragraph {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-789p-latest-promotions-analysis__hero-title {
    font-size: 40px;
  }
  .page-resources-789p-latest-promotions-analysis__hero-description {
    font-size: 18px;
  }
  .page-resources-789p-latest-promotions-analysis__section-title {
    font-size: 30px;
  }
  .page-resources-789p-latest-promotions-analysis__paragraph,
  .page-resources-789p-latest-promotions-analysis__ordered-list li,
  .page-resources-789p-latest-promotions-analysis__unordered-list li,
  .page-resources-789p-latest-promotions-analysis__feature-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-resources-789p-latest-promotions-analysis__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-789p-latest-promotions-analysis__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-resources-789p-latest-promotions-analysis__hero-description {
    font-size: 16px;
  }
  .page-resources-789p-latest-promotions-analysis__hero-image-wrapper {
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .page-resources-789p-latest-promotions-analysis__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-789p-latest-promotions-analysis__cta-button,
  .page-resources-789p-latest-promotions-analysis__btn-primary,
  .page-resources-789p-latest-promotions-analysis__btn-secondary,
  .page-resources-789p-latest-promotions-analysis a[class*="button"],
  .page-resources-789p-latest-promotions-analysis a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-789p-latest-promotions-analysis__section {
    padding: 40px 0;
  }
  .page-resources-789p-latest-promotions-analysis__container {
    padding: 0 15px;
  }
  .page-resources-789p-latest-promotions-analysis__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-resources-789p-latest-promotions-analysis__paragraph,
  .page-resources-789p-latest-promotions-analysis__feature-description {
    font-size: 16px;
  }
  .page-resources-789p-latest-promotions-analysis__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-789p-latest-promotions-analysis__card {
    padding: 20px;
    border-radius: 8px;
  }
  .page-resources-789p-latest-promotions-analysis__card-image {
    height: 200px;
    border-radius: 6px;
  }
  .page-resources-789p-latest-promotions-analysis__card-title {
    font-size: 20px;
  }
  .page-resources-789p-latest-promotions-analysis__ordered-list,
  .page-resources-789p-latest-promotions-analysis__unordered-list {
    margin: 30px auto;
  }
  .page-resources-789p-latest-promotions-analysis__ordered-list li {
    font-size: 16px;
    padding-left: 50px;
    margin-bottom: 25px;
  }
  .page-resources-789p-latest-promotions-analysis__ordered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .page-resources-789p-latest-promotions-analysis__list-title {
    font-size: 19px;
  }
  .page-resources-789p-latest-promotions-analysis__unordered-list li {
    font-size: 16px;
  }
  .page-resources-789p-latest-promotions-analysis__feature-item {
    padding: 25px;
    border-radius: 8px;
  }
  .page-resources-789p-latest-promotions-analysis__feature-title {
    font-size: 20px;
  }
  .page-resources-789p-latest-promotions-analysis__faq-item {
    border-radius: 8px;
  }
  .page-resources-789p-latest-promotions-analysis__faq-question {
    padding: 18px 20px;
    border-radius: 8px;
  }
  .page-resources-789p-latest-promotions-analysis__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-789p-latest-promotions-analysis__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-resources-789p-latest-promotions-analysis__faq-item.active .page-resources-789p-latest-promotions-analysis__faq-answer {
    padding: 15px 20px !important;
  }
  .page-resources-789p-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-789p-latest-promotions-analysis__section,
  .page-resources-789p-latest-promotions-analysis__card,
  .page-resources-789p-latest-promotions-analysis__container,
  .page-resources-789p-latest-promotions-analysis__hero-section,
  .page-resources-789p-latest-promotions-analysis__call-to-action {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-789p-latest-promotions-analysis__hero-title {
    font-size: 28px;
  }
  .page-resources-789p-latest-promotions-analysis__section-title {
    font-size: 22px;
  }
  .page-resources-789p-latest-promotions-analysis__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-resources-789p-latest-promotions-analysis__card-image {
    height: 180px;
  }
  .page-resources-789p-latest-promotions-analysis__ordered-list li p {
    font-size: 15px;
  }
  .page-resources-789p-latest-promotions-analysis__unordered-list li {
    font-size: 15px;
  }
  .page-resources-789p-latest-promotions-analysis__faq-question h3 {
    font-size: 15px;
  }
  .page-resources-789p-latest-promotions-analysis__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
  .page-resources-789p-latest-promotions-analysis__faq-item.active .page-resources-789p-latest-promotions-analysis__faq-answer {
    padding: 10px 15px !important;
  }
}