/* style/resources-vip-benefits-unveiling.css */

:root {
  --page-primary-color: #26A9E0;
  --page-secondary-color: #FFFFFF;
  --page-dark-text: #333333;
  --page-light-text: #FFFFFF;
  --page-background-light: #F8F9FA;
  --page-background-dark: #1A1A1A; /* Assuming shared.css var(--dark-bg) is dark */
  --page-accent-orange: #EA7C07;
}

.page-resources-vip-benefits-unveiling {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-light-text); /* Default text color for dark body background */
  background-color: var(--page-background-dark); /* Ensure background is dark if body is dark-bg */
}

.page-resources-vip-benefits-unveiling__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Apply offset if shared doesn't to body */
  text-align: center;
  overflow: hidden;
  background-color: var(--page-primary-color);
  color: var(--page-light-text);
}

.page-resources-vip-benefits-unveiling__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-vip-benefits-unveiling__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-vip-benefits-unveiling__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-vip-benefits-unveiling__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--page-light-text);
}

.page-resources-vip-benefits-unveiling__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--page-light-text);
}

.page-resources-vip-benefits-unveiling__btn-primary {
  display: inline-block;
  background: var(--page-accent-orange);
  color: var(--page-light-text);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-vip-benefits-unveiling__btn-primary:hover {
  background-color: darken(var(--page-accent-orange), 10%);
  transform: translateY(-2px);
}

.page-resources-vip-benefits-unveiling__section {
  padding: 60px 20px;
  text-align: center;
}

.page-resources-vip-benefits-unveiling__light-bg {
  background-color: var(--page-secondary-color);
  color: var(--page-dark-text);
}

.page-resources-vip-benefits-unveiling__dark-section {
  background-color: var(--page-primary-color);
  color: var(--page-light-text);
}

.page-resources-vip-benefits-unveiling__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-vip-benefits-unveiling__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-vip-benefits-unveiling__text-block {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-resources-vip-benefits-unveiling__card {
  background-color: var(--page-secondary-color);
  color: var(--page-dark-text);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-resources-vip-benefits-unveiling__card--dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--page-light-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-vip-benefits-unveiling__card:hover {
  transform: translateY(-5px);
}

.page-resources-vip-benefits-unveiling__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-vip-benefits-unveiling__card-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-resources-vip-benefits-unveiling__image-content-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  text-align: left;
}

.page-resources-vip-benefits-unveiling__image-content-grid--reverse {
  flex-direction: row-reverse;
}

.page-resources-vip-benefits-unveiling__image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-resources-vip-benefits-unveiling__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-vip-benefits-unveiling__text-content {
  flex: 1;
}

.page-resources-vip-benefits-unveiling__sub-title {
  font-size: 2em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-vip-benefits-unveiling__text-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-vip-benefits-unveiling__cta-wrapper {
  margin-top: 60px;
}

.page-resources-vip-benefits-unveiling__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-vip-benefits-unveiling__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-light-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-vip-benefits-unveiling__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-resources-vip-benefits-unveiling__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-vip-benefits-unveiling__faq-title {
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.page-resources-vip-benefits-unveiling__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.page-resources-vip-benefits-unveiling__faq-item.active .page-resources-vip-benefits-unveiling__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-vip-benefits-unveiling__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  text-align: left;
}

.page-resources-vip-benefits-unveiling__faq-item.active .page-resources-vip-benefits-unveiling__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px;
}

.page-resources-vip-benefits-unveiling__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: var(--page-light-text);
}

.page-resources-vip-benefits-unveiling__conclusion {
  padding-top: 60px;
  padding-bottom: 80px;
}

.page-resources-vip-benefits-unveiling__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-vip-benefits-unveiling__hero-title {
    font-size: 2.8em;
  }
  .page-resources-vip-benefits-unveiling__hero-description {
    font-size: 1.1em;
  }
  .page-resources-vip-benefits-unveiling__section-title {
    font-size: 2.2em;
  }
  .page-resources-vip-benefits-unveiling__image-content-grid {
    flex-direction: column;
    gap: 30px;
  }
  .page-resources-vip-benefits-unveiling__image-content-grid--reverse {
    flex-direction: column;
  }
  .page-resources-vip-benefits-unveiling__image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-resources-vip-benefits-unveiling {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-vip-benefits-unveiling__hero-section {
    min-height: 450px;
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-vip-benefits-unveiling__hero-title {
    font-size: 2.2em;
  }
  .page-resources-vip-benefits-unveiling__hero-description {
    font-size: 1em;
  }
  .page-resources-vip-benefits-unveiling__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-vip-benefits-unveiling__section {
    padding: 40px 15px;
  }
  .page-resources-vip-benefits-unveiling__section-title {
    font-size: 1.8em;
  }
  .page-resources-vip-benefits-unveiling__text-block {
    font-size: 0.95em;
  }
  .page-resources-vip-benefits-unveiling__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-vip-benefits-unveiling__card {
    padding: 20px;
  }
  .page-resources-vip-benefits-unveiling__card-title {
    font-size: 1.5em;
  }
  .page-resources-vip-benefits-unveiling__sub-title {
    font-size: 1.6em;
  }
  .page-resources-vip-benefits-unveiling__text-description {
    font-size: 0.95em;
  }
  .page-resources-vip-benefits-unveiling__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-vip-benefits-unveiling__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image responsive adaptations */
  .page-resources-vip-benefits-unveiling img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-vip-benefits-unveiling__section,
  .page-resources-vip-benefits-unveiling__card,
  .page-resources-vip-benefits-unveiling__container,
  .page-resources-vip-benefits-unveiling__image-wrapper,
  .page-resources-vip-benefits-unveiling__text-content,
  .page-resources-vip-benefits-unveiling__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Ensure no horizontal scroll */
  }
  /* Mobile button responsive adaptations */
  .page-resources-vip-benefits-unveiling__btn-primary,
  .page-resources-vip-benefits-unveiling__btn-secondary,
  .page-resources-vip-benefits-unveiling a[class*="button"],
  .page-resources-vip-benefits-unveiling 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;
    margin-bottom: 10px; /* Add some space between stacked buttons */
  }
  .page-resources-vip-benefits-unveiling__cta-buttons,
  .page-resources-vip-benefits-unveiling__button-group,
  .page-resources-vip-benefits-unveiling__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}