.page-vip-club-tiers {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-vip-club-tiers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-club-tiers__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-vip-club-tiers__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-vip-club-tiers__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay to make text readable */
  display: block;
}

.page-vip-club-tiers__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-vip-club-tiers__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club-tiers__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.page-vip-club-tiers__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club-tiers__cta-button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

.page-vip-club-tiers__cta-button--primary:hover {
  background-color: #e0a53a;
}

.page-vip-club-tiers__cta-button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-vip-club-tiers__cta-button--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-vip-club-tiers__introduction-section,
.page-vip-club-tiers__tiers-overview-section,
.page-vip-club-tiers__benefits-details-section,
.page-vip-club-tiers__how-to-join-section,
.page-vip-club-tiers__faq-section,
.page-vip-club-tiers__contact-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-vip-club-tiers__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-vip-club-tiers__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-vip-club-tiers__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-vip-club-tiers__tiers-overview-section {
  background-color: #f5f5f5;
}

.page-vip-club-tiers__tier-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club-tiers__tier-card {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-tiers__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club-tiers__tier-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-vip-club-tiers__tier-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-vip-club-tiers__tier-description {
  padding: 0 25px;
  margin-bottom: 25px;
  font-size: 0.95em;
  flex-grow: 1;
  color: #cccccc;
}

.page-vip-club-tiers__tier-benefits {
  list-style: none;
  padding: 0 25px;
  margin-bottom: 25px;
  text-align: left;
}

.page-vip-club-tiers__tier-benefits li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #e0e0e0;
}

.page-vip-club-tiers__benefit-icon {
  color: #FCBC45;
  margin-right: 10px;
}

.page-vip-club-tiers__card-button {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-vip-club-tiers__card-button:hover {
  background-color: #e0a53a;
}

.page-vip-club-tiers__benefits-details-section {
  background-color: #FFFFFF;
}

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

.page-vip-club-tiers__benefit-item {
  text-align: center;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-tiers__benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-club-tiers__benefit-icon-large {
  width: 100%; /* Ensure images are not tiny */
  max-width: 400px; /* Constrain max width for larger images */
  height: auto; /* Maintain aspect ratio */
  min-height: 200px; /* Minimum height for content images */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-vip-club-tiers__benefit-heading {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-vip-club-tiers__benefit-description {
  color: #666666;
  font-size: 1em;
}

.page-vip-club-tiers__how-to-join-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-vip-club-tiers__how-to-join-section .page-vip-club-tiers__section-title,
.page-vip-club-tiers__how-to-join-section .page-vip-club-tiers__text-content {
  color: #FFFFFF;
}

.page-vip-club-tiers__how-to-join-section .page-vip-club-tiers__section-title::after {
  background-color: #FCBC45;
}

.page-vip-club-tiers__faq-section {
  background-color: #f5f5f5;
}

.page-vip-club-tiers__faq-items {
  margin-top: 40px;
}

.page-vip-club-tiers__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px;
}

.page-vip-club-tiers__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-vip-club-tiers__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

.page-vip-club-tiers__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-vip-club-tiers__faq-answer {
  font-size: 1em;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
}

.page-vip-club-tiers__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  opacity: 1;
  margin-top: 15px;
}

.page-vip-club-tiers__contact-section {
  background-color: #FFFFFF;
  text-align: center;
}

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

  .page-vip-club-tiers__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-tiers__main-title {
    font-size: 2.2em;
  }

  .page-vip-club-tiers__hero-description {
    font-size: 1em;
  }

  .page-vip-club-tiers__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-club-tiers__section-title {
    font-size: 2em;
  }

  .page-vip-club-tiers__text-content {
    font-size: 0.95em;
  }

  .page-vip-club-tiers__hero-section,
  .page-vip-club-tiers__introduction-section,
  .page-vip-club-tiers__tiers-overview-section,
  .page-vip-club-tiers__benefits-details-section,
  .page-vip-club-tiers__how-to-join-section,
  .page-vip-club-tiers__faq-section,
  .page-vip-club-tiers__contact-section {
    padding: 40px 0;
  }

  .page-vip-club-tiers__tier-cards,
  .page-vip-club-tiers__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club-tiers__tier-card,
  .page-vip-club-tiers__benefit-item {
    margin: 0 10px;
  }

  /* Mobile content area image constraint */
  .page-vip-club-tiers img {
    max-width: 100%;
    height: auto;
  }
  
  .page-vip-club-tiers__hero-image-wrapper {
    position: relative;
    height: 300px; /* Adjust height for mobile hero */
  }
  .page-vip-club-tiers__hero-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-vip-club-tiers__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-vip-club-tiers__main-title {
    font-size: 1.8em;
  }

  .page-vip-club-tiers__hero-description {
    font-size: 0.9em;
  }

  .page-vip-club-tiers__section-title {
    font-size: 1.8em;
  }
  .page-vip-club-tiers__hero-image-wrapper {
    height: 250px;
  }
}