.page-promotions-vip-benefits {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B; /* Body background from shared.css */

  color: var(--text-main); /* Default text color for the page content */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--deep-navy); /* Ensure consistency with body background */
}

.page-promotions-vip-benefits__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  background-color: var(--deep-navy);
}

.page-promotions-vip-benefits__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image */
  margin-bottom: 20px;
}

.page-promotions-vip-benefits__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 1;
}

.page-promotions-vip-benefits__hero-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: var(--gold-color);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-promotions-vip-benefits__hero-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-benefits__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-vip-benefits__cta-button--primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
}

.page-promotions-vip-benefits__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions-vip-benefits__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--deep-navy);
}

.page-promotions-vip-benefits__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.page-promotions-vip-benefits__section-description {
  font-size: 1em;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promotions-vip-benefits__benefit-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-vip-benefits__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__benefit-icon {
  width: 100%; /* Ensure image fits card */
  max-width: 250px; /* Example size, adjust as needed */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-vip-benefits__benefit-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-vip-benefits__benefit-text {
  font-size: 0.95em;
  color: var(--text-secondary);
}

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

.page-promotions-vip-benefits__step-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-promotions-vip-benefits__step-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-vip-benefits__step-text {
  font-size: 0.95em;
  color: var(--text-secondary);
}

.page-promotions-vip-benefits__tier-table {
  margin-top: 40px;
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background-color: var(--card-bg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-benefits__tier-header,
.page-promotions-vip-benefits__tier-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-width: 700px; /* Ensure table is wide enough for content */
}

.page-promotions-vip-benefits__tier-header {
  background-color: var(--primary-color);
  font-weight: 700;
  color: var(--text-main);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.page-promotions-vip-benefits__tier-row {
  padding: 15px 0;
  border-bottom: 1px solid var(--divider-color);
  color: var(--text-secondary);
}

.page-promotions-vip-benefits__tier-row:nth-child(even) {
  background-color: rgba(29, 95, 209, 0.05); /* Slight accent for even rows */
}

.page-promotions-vip-benefits__tier-row:last-child {
  border-bottom: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.page-promotions-vip-benefits__tier-cell {
  text-align: center;
  padding: 5px 10px;
  word-break: break-word;
}

.page-promotions-vip-benefits__commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-promotions-vip-benefits__commitment-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-promotions-vip-benefits__commitment-heading {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-vip-benefits__commitment-text {
  font-size: 0.95em;
  color: var(--text-secondary);
}

.page-promotions-vip-benefits__faq-section {
  padding-bottom: 80px;
}

.page-promotions-vip-benefits__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-promotions-vip-benefits__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-benefits__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--text-main);
  background-color: rgba(29, 95, 209, 0.1);
  transition: background-color 0.3s ease;
}

.page-promotions-vip-benefits__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions-vip-benefits__faq-item summary:hover {
  background-color: rgba(29, 95, 209, 0.2);
}

.page-promotions-vip-benefits__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-promotions-vip-benefits__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-promotions-vip-benefits__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 0.95em;
  color: var(--text-secondary);
  border-top: 1px solid var(--divider-color);
}

.page-promotions-vip-benefits__cta-bottom {
  padding-top: 40px;
}

.page-promotions-vip-benefits__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-vip-benefits__cta-button--secondary {
  background: var(--card-bg);
  color: var(--text-main);
  border: 2px solid var(--primary-color);
}

.page-promotions-vip-benefits__cta-button--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--glow-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-vip-benefits__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-promotions-vip-benefits__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }

  .page-promotions-vip-benefits__benefits-grid,
  .page-promotions-vip-benefits__steps,
  .page-promotions-vip-benefits__commitment-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-benefits__hero-section,
  .page-promotions-vip-benefits__section {
    padding: 40px 15px;
  }

  .page-promotions-vip-benefits__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-promotions-vip-benefits__section-title {
    font-size: clamp(1.6em, 5.5vw, 2.2em);
  }

  .page-promotions-vip-benefits__hero-description,
  .page-promotions-vip-benefits__section-description {
    font-size: 0.9em;
  }

  .page-promotions-vip-benefits__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-vip-benefits__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions-vip-benefits__benefits-grid,
  .page-promotions-vip-benefits__steps,
  .page-promotions-vip-benefits__commitment-list {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-promotions-vip-benefits__benefit-card,
  .page-promotions-vip-benefits__step-card,
  .page-promotions-vip-benefits__commitment-item {
    padding: 25px;
  }

  .page-promotions-vip-benefits__benefit-title,
  .page-promotions-vip-benefits__step-title,
  .page-promotions-vip-benefits__commitment-heading {
    font-size: 1.3em;
  }

  .page-promotions-vip-benefits__tier-table {
    margin: 40px 15px;
    max-width: calc(100% - 30px); /* Account for padding */
  }

  .page-promotions-vip-benefits__tier-header,
  .page-promotions-vip-benefits__tier-row {
    grid-template-columns: repeat(2, 1fr); /* Simplified for mobile example */
    min-width: unset;
    text-align: left;
    padding: 10px 15px;
  }

  .page-promotions-vip-benefits__tier-header .page-promotions-vip-benefits__tier-cell:nth-child(3),
  .page-promotions-vip-benefits__tier-header .page-promotions-vip-benefits__tier-cell:nth-child(4),
  .page-promotions-vip-benefits__tier-header .page-promotions-vip-benefits__tier-cell:nth-child(5),
  .page-promotions-vip-benefits__tier-header .page-promotions-vip-benefits__tier-cell:nth-child(6),
  .page-promotions-vip-benefits__tier-row .page-promotions-vip-benefits__tier-cell:nth-child(3),
  .page-promotions-vip-benefits__tier-row .page-promotions-vip-benefits__tier-cell:nth-child(4),
  .page-promotions-vip-benefits__tier-row .page-promotions-vip-benefits__tier-cell:nth-child(5),
  .page-promotions-vip-benefits__tier-row .page-promotions-vip-benefits__tier-cell:nth-child(6) {
    display: none; /* Hide some columns on small screens */
  }

  .page-promotions-vip-benefits__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-promotions-vip-benefits__faq-answer {
    padding: 10px 20px 15px 20px;
  }

  /* Image responsive rules */
  .page-promotions-vip-benefits img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-vip-benefits__section,
  .page-promotions-vip-benefits__card,
  .page-promotions-vip-benefits__container,
  .page-promotions-vip-benefits__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-vip-benefits__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-benefits__hero-title {
    font-size: clamp(1.5em, 7vw, 2.2em);
  }

  .page-promotions-vip-benefits__section-title {
    font-size: clamp(1.4em, 6.5vw, 2em);
  }

  .page-promotions-vip-benefits__cta-button {
    font-size: 0.95em;
  }
}