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

.page-vip-club__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2463; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay for text readability */
  z-index: 1;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-vip-club__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary gold color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-vip-club__intro-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.5;
}

.page-vip-club__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-club__hero-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
}

.page-vip-club__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-vip-club__benefits-overview,
.page-vip-club__tiers-section,
.page-vip-club__how-to-join-section,
.page-vip-club__details-section,
.page-vip-club__faq-section,
.page-vip-club__cta-section,
.page-vip-club__more-info-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-vip-club__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-vip-club__benefit-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-vip-club__benefit-icon {
  width: 200px; /* Minimum size requirement */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-vip-club__benefit-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

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

.page-vip-club__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #0A2463;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-club__cta-button:hover {
  background-color: #1a3c7a;
  transform: translateY(-3px);
}

.page-vip-club__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-vip-club__tier-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-vip-club__tier-card--bronze {
  border-color: #cd7f32;
}

.page-vip-club__tier-card--silver {
  border-color: #c0c0c0;
}

.page-vip-club__tier-card--gold {
  border-color: #FFD700;
}

.page-vip-club__tier-card--platinum {
  border-color: #e5e4e2;
}

.page-vip-club__tier-badge {
  width: 200px; /* Minimum size requirement */
  height: auto;
  margin-bottom: 20px;
}

.page-vip-club__tier-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

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

.page-vip-club__tier-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #555555;
}

.page-vip-club__tier-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-club__tier-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-vip-club__how-to-join-section {
  background-color: #f0f4f8;
  padding: 80px 20px;
  border-radius: 15px;
  margin-top: 60px;
}

.page-vip-club__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-vip-club__step-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-vip-club__step-number {
  font-size: 3em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-vip-club__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-vip-club__step-description {
  color: #666666;
  margin-bottom: 20px;
}

.page-vip-club__step-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-club__step-button:hover {
  background-color: #1a3c7a;
  transform: translateY(-3px);
}

.page-vip-club__details-list {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.page-vip-club__details-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  max-width: 600px;
}

.page-vip-club__item-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-vip-club__item-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-club__item-title a:hover {
  color: #FFD700;
}

.page-vip-club__item-description {
  color: #666666;
  margin-bottom: 20px;
}

.page-vip-club__item-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-club__item-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-vip-club__faq-accordion {
  margin-top: 40px;
}

.page-vip-club__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-vip-club__faq-question {
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #0A2463;
  background-color: #f8f8f8;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-vip-club__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-vip-club__faq-question.active::after {
  content: '-';
}

.page-vip-club__faq-question:hover {
  background-color: #e9e9e9;
}

.page-vip-club__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-vip-club__faq-answer p {
  padding-bottom: 20px;
  color: #555555;
}

.page-vip-club__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 15px;
  margin-top: 60px;
}

.page-vip-club__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-vip-club__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.page-vip-club__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4em;
  border-radius: 60px;
  background-color: #FFD700;
  color: #0A2463;
}

.page-vip-club__cta-button--large:hover {
  background-color: #e0b800;
  transform: translateY(-4px);
}

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

.page-vip-club__article-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-vip-club__article-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-vip-club__article-title {
  font-size: 1.4em;
  color: #0A2463;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-vip-club__article-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-club__article-title a:hover {
  color: #FFD700;
}

.page-vip-club__article-description {
  color: #666666;
  margin: 0 20px 20px;
}

.page-vip-club__article-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-vip-club__article-link:hover {
  color: #e0b800;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__main-title {
    font-size: 2.8em;
  }

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

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

  .page-vip-club__cta-title {
    font-size: 2.5em;
  }
}

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

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

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

  .page-vip-club__section-title {
    font-size: 1.8em;
  }

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

  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__articles-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
  .page-vip-club__step-card,
  .page-vip-club__article-card {
    margin-bottom: 20px;
  }

  .page-vip-club__hero-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__cta-section {
    padding: 50px 15px;
  }

  .page-vip-club__benefits-overview,
  .page-vip-club__tiers-section,
  .page-vip-club__details-section,
  .page-vip-club__faq-section,
  .page-vip-club__more-info-section {
    margin: 40px auto;
    padding: 0 15px;
  }

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

  .page-vip-club__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  
  /* Mobile image overflow prevention */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
}