/* style/promotions-exclusive-offers.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-text-color: #FFFF00;
  --background-color: #FFFFFF;
  --border-color: #e0e0e0;
}

.page-promotions-exclusive-offers {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-color);
}

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

.page-promotions-exclusive-offers__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-exclusive-offers__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--button-register-bg);
  border-radius: 2px;
}

.page-promotions-exclusive-offers__description {
  font-size: 18px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
}

/* Hero Section */
.page-promotions-exclusive-offers__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);
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a9b5a 100%); /* Slightly lighter green for gradient */
  overflow: hidden;
}

.page-promotions-exclusive-offers__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-promotions-exclusive-offers__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions-exclusive-offers__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-exclusive-offers__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
}

.page-promotions-exclusive-offers__hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--button-text-color); /* Yellow for H1 to stand out */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-exclusive-offers__hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-exclusive-offers__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--button-register-bg);
  color: var(--button-text-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--button-text-color);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-exclusive-offers__cta-button:hover {
  background: #a80707; /* Darker red */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Overview Section */
.page-promotions-exclusive-offers__overview-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

/* Categories Section */
.page-promotions-exclusive-offers__categories-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-promotions-exclusive-offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-exclusive-offers__card {
  background: var(--secondary-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions-exclusive-offers__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-exclusive-offers__card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-promotions-exclusive-offers__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promotions-exclusive-offers__card-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-exclusive-offers__card-title a:hover {
  color: var(--button-register-bg);
}

.page-promotions-exclusive-offers__card-description {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 20px;
}

.page-promotions-exclusive-offers__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-promotions-exclusive-offers__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Claim Guide Section */
.page-promotions-exclusive-offers__claim-guide {
  padding: 80px 0;
  background: linear-gradient(135deg, #017439 0%, #005a2e 100%);
  color: var(--text-light);
}

.page-promotions-exclusive-offers__claim-guide .page-promotions-exclusive-offers__section-title {
  color: var(--button-text-color);
}

.page-promotions-exclusive-offers__claim-guide .page-promotions-exclusive-offers__section-title::after {
  background-color: var(--button-text-color);
}

.page-promotions-exclusive-offers__guide-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-exclusive-offers__guide-steps {
  flex: 1;
}

.page-promotions-exclusive-offers__guide-steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-exclusive-offers__guide-steps li {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 60px;
}

.page-promotions-exclusive-offers__guide-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 20px;
  background: var(--button-text-color);
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.page-promotions-exclusive-offers__guide-steps h3 {
  color: var(--button-text-color);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-exclusive-offers__guide-steps p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 0;
}

.page-promotions-exclusive-offers__guide-image {
  flex: 1;
  text-align: center;
}

.page-promotions-exclusive-offers__guide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-exclusive-offers__cta-button--guide {
  margin-top: 40px;
  border-color: var(--button-text-color);
  background: var(--button-register-bg);
  color: var(--button-text-color);
}

.page-promotions-exclusive-offers__cta-button--guide:hover {
  background: #a80707;
}

/* Terms Summary Section */
.page-promotions-exclusive-offers__terms-summary {
  padding: 80px 0;
  background-color: var(--background-color);
}

.page-promotions-exclusive-offers__terms-summary .page-promotions-exclusive-offers__description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-exclusive-offers__terms-summary a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-promotions-exclusive-offers__terms-summary a:hover {
  color: var(--button-register-bg);
}

.page-promotions-exclusive-offers__btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-promotions-exclusive-offers__btn-primary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-promotions-exclusive-offers__faq-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-promotions-exclusive-offers__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-exclusive-offers__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-exclusive-offers__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: #fff;
  border-top: 1px solid var(--border-color);
}

.page-promotions-exclusive-offers__faq-item.active .page-promotions-exclusive-offers__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
}

.page-promotions-exclusive-offers__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: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions-exclusive-offers__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-promotions-exclusive-offers__faq-question:active {
  background: #eeeeee;
}

.page-promotions-exclusive-offers__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-promotions-exclusive-offers__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;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-promotions-exclusive-offers__faq-item.active .page-promotions-exclusive-offers__faq-toggle {
  color: var(--button-register-bg);
  transform: rotate(45deg); /* Plus sign becomes a cross */
}

/* Final CTA Section */
.page-promotions-exclusive-offers__final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #005a2e 100%);
  color: var(--text-light);
  text-align: center;
}

.page-promotions-exclusive-offers__final-cta .page-promotions-exclusive-offers__section-title {
  color: var(--button-text-color);
}

.page-promotions-exclusive-offers__final-cta .page-promotions-exclusive-offers__section-title::after {
  background-color: var(--button-text-color);
}

.page-promotions-exclusive-offers__final-cta .page-promotions-exclusive-offers__description {
  color: var(--text-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-promotions-exclusive-offers__cta-button--large {
  padding: 20px 60px;
  font-size: 24px;
  border-color: var(--button-text-color);
  background: var(--button-register-bg);
  color: var(--button-text-color);
}

.page-promotions-exclusive-offers__cta-button--large:hover {
  background: #a80707;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-exclusive-offers__hero-content h1 {
    font-size: 42px;
  }
  .page-promotions-exclusive-offers__section-title {
    font-size: 32px;
  }
  .page-promotions-exclusive-offers__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions-exclusive-offers__guide-content {
    flex-direction: column;
  }
  .page-promotions-exclusive-offers__guide-steps {
    order: 2;
  }
  .page-promotions-exclusive-offers__guide-image {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions-exclusive-offers__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-exclusive-offers__hero-image img {
    border-radius: 4px;
  }
  .page-promotions-exclusive-offers__hero-content h1 {
    font-size: 32px;
  }
  .page-promotions-exclusive-offers__hero-content p {
    font-size: 16px;
  }
  .page-promotions-exclusive-offers__cta-button {
    padding: 15px 30px;
    font-size: 18px;
  }

  .page-promotions-exclusive-offers__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions-exclusive-offers__description {
    font-size: 16px;
  }

  .page-promotions-exclusive-offers__overview-section,
  .page-promotions-exclusive-offers__categories-section,
  .page-promotions-exclusive-offers__claim-guide,
  .page-promotions-exclusive-offers__terms-summary,
  .page-promotions-exclusive-offers__faq-section,
  .page-promotions-exclusive-offers__final-cta {
    padding: 40px 0;
  }

  .page-promotions-exclusive-offers__container,
  .page-promotions-exclusive-offers__grid,
  .page-promotions-exclusive-offers__card,
  .page-promotions-exclusive-offers__guide-steps,
  .page-promotions-exclusive-offers__guide-image,
  .page-promotions-exclusive-offers__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Image responsiveness for all images */
  .page-promotions-exclusive-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Button responsiveness for all buttons */
  .page-promotions-exclusive-offers__cta-button,
  .page-promotions-exclusive-offers__btn-primary,
  .page-promotions-exclusive-offers__btn-secondary,
  .page-promotions-exclusive-offers a[class*="button"],
  .page-promotions-exclusive-offers a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-promotions-exclusive-offers__card-title {
    font-size: 20px;
  }
  .page-promotions-exclusive-offers__card-description {
    font-size: 15px;
  }

  .page-promotions-exclusive-offers__guide-steps li {
    padding-left: 50px;
  }
  .page-promotions-exclusive-offers__guide-steps li::before {
    left: 15px;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .page-promotions-exclusive-offers__guide-steps h3 {
    font-size: 18px;
  }

  .page-promotions-exclusive-offers__faq-question {
    padding: 15px 20px;
  }
  .page-promotions-exclusive-offers__faq-question h3 {
    font-size: 16px;
  }
  .page-promotions-exclusive-offers__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-promotions-exclusive-offers__faq-item.active .page-promotions-exclusive-offers__faq-answer {
    padding: 15px 20px !important;
  }

  .page-promotions-exclusive-offers__cta-button--large {
    padding: 18px 40px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-exclusive-offers__hero-content h1 {
    font-size: 28px;
  }
  .page-promotions-exclusive-offers__hero-content p {
    font-size: 15px;
  }
  .page-promotions-exclusive-offers__cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-promotions-exclusive-offers__section-title {
    font-size: 24px;
  }
  .page-promotions-exclusive-offers__description {
    font-size: 14px;
  }
  .page-promotions-exclusive-offers__card img {
    
  }
  .page-promotions-exclusive-offers__card-title {
    font-size: 18px;
  }
  .page-promotions-exclusive-offers__btn-secondary {
    font-size: 14px;
    padding: 10px 20px;
  }
  .page-promotions-exclusive-offers__guide-steps h3 {
    font-size: 16px;
  }
  .page-promotions-exclusive-offers__guide-steps p {
    font-size: 14px;
  }
  .page-promotions-exclusive-offers__btn-primary {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-promotions-exclusive-offers__faq-question h3 {
    font-size: 15px;
  }
  .page-promotions-exclusive-offers__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
  .page-promotions-exclusive-offers__cta-button--large {
    font-size: 18px;
    padding: 15px 30px;
  }
}