.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text on dark background */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

.page-promotions-vip-program-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-vip-program-hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-promotions-vip-program-hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions-vip-program-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions-vip-program-hero .page-promotions-vip-program-container {
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program-subtitle {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  font-size: 1.1em;
}

.page-promotions-vip-program-btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-promotions-vip-program-btn-primary:hover {
  background-color: #E0B500;
  transform: translateY(-3px);
}

.page-promotions-vip-program-btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-promotions-vip-program-btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-promotions-vip-program-btn-tertiary {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-vip-program-btn-tertiary:hover {
  background-color: #1A3A60;
  transform: translateY(-3px);
}

.page-promotions-vip-program-section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions-vip-program-section:nth-of-type(even) {
  background-color: #1A3A60; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-vip-program-section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions-vip-program-section-description {
  font-size: 1.1em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-promotions-vip-program-grid-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #FFD700;
}

.page-promotions-vip-program-grid-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions-vip-program-grid-item p {
  color: #E0E0E0;
}

.page-promotions-vip-program-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-vip-program-image-full-width {
  margin-top: 60px;
}

.page-promotions-vip-program-img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program-tier-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-vip-program-tier-card {
  background-color: #0A2342;
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-promotions-vip-program-tier-card h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-promotions-vip-program-tier-card p {
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-promotions-vip-program-tier-card ul {
  list-style: none;
  padding: 0;
}

.page-promotions-vip-program-tier-card ul li {
  color: #FFFFFF;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions-vip-program-tier-card ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-vip-program-how-to-join {
  background-color: #0A2342;
}

.page-promotions-vip-program-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-promotions-vip-program-steps li {
  background-color: #1A3A60;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-top: 80px;
}

.page-promotions-vip-program-step-icon {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A2342;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 3px solid #0A2342;
}

.page-promotions-vip-program-steps li h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions-vip-program-steps li p {
  color: #E0E0E0;
}

.page-promotions-vip-program-steps li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-vip-program-steps li a:hover {
  color: #E0B500;
}

.page-promotions-vip-program-faq {
  background-color: #1A3A60;
}

.page-promotions-vip-program-accordion {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program-accordion-item {
  margin-bottom: 15px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-vip-program-accordion-header {
  background-color: #0A2342;
  color: #FFD700;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-vip-program-accordion-header:hover {
  background-color: #1A3A60;
}

.page-promotions-vip-program-accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-vip-program-accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-vip-program-accordion-content {
  background-color: #1A3A60;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-vip-program-accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-promotions-vip-program-accordion-content p {
  color: #E0E0E0;
  font-size: 1.05em;
  margin: 0;
}

.page-promotions-vip-program-cta-text {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-promotions-vip-program-floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
}

.page-promotions-vip-program-floating-cta:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #E0B500;
}

.page-promotions-vip-program-floating-cta::before {
  content: '⭐';
  font-size: 1.2em;
}

.page-promotions-vip-program-footer-copyright {
  text-align: center;
  padding: 40px 20px;
  background-color: #0A2342;
  color: #E0E0E0;
  font-size: 0.9em;
  border-top: 1px solid #1A3A60;
  margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-vip-program-title {
    font-size: 2.8em;
  }

  .page-promotions-vip-program-section-title {
    font-size: 2em;
  }

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

  .page-promotions-vip-program-tier-card {
    flex: 1 1 300px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program-hero {
    padding: 80px 0;
    min-height: 400px;
  }

  .page-promotions-vip-program-title {
    font-size: 2.2em;
  }

  .page-promotions-vip-program-subtitle {
    font-size: 1em;
  }

  .page-promotions-vip-program-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-vip-program-section {
    padding: 60px 0;
  }

  .page-promotions-vip-program-section-title {
    font-size: 1.8em;
  }

  .page-promotions-vip-program-grid-item h3 {
    font-size: 1.3em;
  }

  .page-promotions-vip-program-tier-card h3 {
    font-size: 1.5em;
  }

  .page-promotions-vip-program-steps li {
    padding-top: 70px;
  }

  .page-promotions-vip-program-step-icon {
    width: 45px;
    height: 45px;
    font-size: 1.8em;
  }

  .page-promotions-vip-program-accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions-vip-program-accordion-content.active {
    padding: 15px 20px;
  }

  .page-promotions-vip-program-floating-cta {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-promotions-vip-program-title {
    font-size: 1.8em;
  }

  .page-promotions-vip-program-subtitle {
    font-size: 0.9em;
  }

  .page-promotions-vip-program-btn {
    display: block;
    margin: 10px auto;
  }

  .page-promotions-vip-program-section-title {
    font-size: 1.5em;
  }

  .page-promotions-vip-program-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-program-tier-cards {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions-vip-program-tier-card {
    max-width: 100%;
  }

  .page-promotions-vip-program-steps {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-program-accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-promotions-vip-program-accordion-content.active {
    padding: 12px 15px;
  }

  .page-promotions-vip-program-cta-text {
    font-size: 1.1em;
  }
}