.page-vip-club {
  padding-top: 10px; /* Small top padding to respect body padding-top from shared.css */
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

.page-vip-club__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-vip-club__hero-content {
  padding: 0 20px;
}

.page-vip-club__main-title {
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.2;
  color: #2F6BFF;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__intro-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-vip-club__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.6);
}

.page-vip-club__section-title {
  font-size: 2em;
  font-weight: bold;
  color: #2F6BFF;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #1F2D3D;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-vip-club__benefits-section,
.page-vip-club__tiers-section,
.page-vip-club__exclusive-offers-section,
.page-vip-club__join-section,
.page-vip-club__faq-section {
  max-width: 1390px;
  margin: 0 auto 60px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-vip-club__benefits-grid,
.page-vip-club__tiers-grid,
.page-vip-club__offers-grid,
.page-vip-club__join-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-vip-club__benefit-card,
.page-vip-club__offer-card,
.page-vip-club__step-card {
  background-color: #F4F7FB;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

.page-vip-club__benefit-card:hover,
.page-vip-club__offer-card:hover,
.page-vip-club__tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-vip-club__benefit-icon,
.page-vip-club__offer-image {
  width: 100%; /* Ensure images take full width of card */
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Min size enforcement */
  min-height: 200px; /* Min size enforcement */
}

.page-vip-club__benefit-title,
.page-vip-club__offer-title,
.page-vip-club__step-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-vip-club__benefit-description,
.page-vip-club__offer-description,
.page-vip-club__step-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #1F2D3D;
}

.page-vip-club__tier-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-club__tier-card--bronze {
  background-color: #F8F8F8;
}
.page-vip-club__tier-card--silver {
  background-color: #F0F5FF;
}
.page-vip-club__tier-card--gold {
  background-color: #E6F0FF;
}
.page-vip-club__tier-card--platinum {
  background-color: #DDE8FF;
}

.page-vip-club__tier-name {
  font-size: 1.5em;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-vip-club__tier-level {
  font-size: 1.1em;
  color: #6FA3FF;
  margin-bottom: 20px;
}

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

.page-vip-club__tier-features li {
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #1F2D3D;
  position: relative;
  padding-left: 20px;
}

.page-vip-club__tier-features li::before {
  content: '✓';
  color: #2F6BFF;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club__tier-cta {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-vip-club__tier-cta:hover {
  background: #2F6BFF;
}

.page-vip-club__button-group {
  text-align: center;
  margin-top: 40px;
}

.page-vip-club__view-all-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #6FA3FF;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-vip-club__view-all-button:hover {
  background-color: #2F6BFF;
}

.page-vip-club__cta-button--large {
  padding: 16px 35px;
  font-size: 1.1em;
}

.page-vip-club__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2F6BFF;
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-vip-club__step-description a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club__step-description a:hover {
  text-decoration: underline;
}

.page-vip-club__faq-list {
  margin-top: 30px;
}

.page-vip-club__faq-item {
  background-color: #F4F7FB;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-vip-club__faq-question {
  font-size: 1.1em;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-vip-club__faq-answer {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
}

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

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    flex-direction: column;
    padding: 15px;
  }

  .page-vip-club__hero-content {
    padding: 0 10px;
  }

  .page-vip-club__main-title {
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .page-vip-club__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-vip-club__section-title {
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-top: 30px;
  }

  .page-vip-club__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__offers-grid,
  .page-vip-club__join-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__exclusive-offers-section,
  .page-vip-club__join-section,
  .page-vip-club__faq-section {
    margin-bottom: 40px;
    padding: 15px;
  }

  .page-vip-club__benefit-card,
  .page-vip-club__offer-card,
  .page-vip-club__step-card,
  .page-vip-club__tier-card {
    padding: 20px;
  }

  .page-vip-club__benefit-title,
  .page-vip-club__offer-title,
  .page-vip-club__step-title {
    font-size: 1.2em;
  }

  .page-vip-club__benefit-icon,
  .page-vip-club__offer-image {
    max-width: 100%; /* Important for preventing overflow */
    height: auto; /* Maintain aspect ratio */
    max-height: 200px; /* Adjust max height for mobile */
  }

  .page-vip-club__tier-name {
    font-size: 1.3em;
  }

  .page-vip-club__faq-question {
    font-size: 1em;
  }

  .page-vip-club__cta-button--large {
    padding: 14px 30px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: 1.5em;
  }
  .page-vip-club__section-title {
    font-size: 1.3em;
  }
  .page-vip-club__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-vip-club__cta-button--large {
    font-size: 0.9em;
  }
}