.page-vip-club-how-to-join {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #F4F7FB; /* Background color */
  color: #1F2D3D; /* Main text color */
}

.page-vip-club-how-to-join__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px 60px;
  background-color: #F4F7FB;
  max-width: 1390px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.page-vip-club-how-to-join__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px;
}

.page-vip-club-how-to-join__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club-how-to-join__hero-content {
  max-width: 900px;
}

.page-vip-club-how-to-join__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-vip-club-how-to-join__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

.page-vip-club-how-to-join__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-vip-club-how-to-join__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #FFFFFF;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  border: none;
  cursor: pointer;
}

.page-vip-club-how-to-join__button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-vip-club-how-to-join__button--secondary {
  background: none;
  border: 2px solid #2F6BFF; /* Main color for border */
  color: #2F6BFF; /* Main color for text */
}

.page-vip-club-how-to-join__button--secondary:hover {
  background-color: #2F6BFF;
  color: #FFFFFF;
}

.page-vip-club-how-to-join__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 25px;
  padding-top: 40px;
}

.page-vip-club-how-to-join__section-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-vip-club-how-to-join__steps-section, 
.page-vip-club-how-to-join__benefits-section, 
.page-vip-club-how-to-join__faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-vip-club-how-to-join__step-card, 
.page-vip-club-how-to-join__benefit-card {
  background-color: #FFFFFF; /* Card B G */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border color */
}

.page-vip-club-how-to-join__step-card:hover, 
.page-vip-club-how-to-join__benefit-card:hover {
  transform: translateY(-5px);
}

.page-vip-club-how-to-join__step-icon {
  width: 100%; /* Ensure image fills card */
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club-how-to-join__step-title, 
.page-vip-club-how-to-join__benefit-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

.page-vip-club-how-to-join__step-description, 
.page-vip-club-how-to-join__benefit-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-vip-club-how-to-join__step-description a {
  color: #2F6BFF; /* Main color for links */
  text-decoration: none;
  font-weight: 500;
}

.page-vip-club-how-to-join__step-description a:hover {
  text-decoration: underline;
}

.page-vip-club-how-to-join__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-vip-club-how-to-join__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-club-how-to-join__faq-item {
  background-color: #FFFFFF; /* Card B G */
  border-radius: 12px;
  padding: 25px 30px;
  border: 1px solid #D6E2FF; /* Border color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-vip-club-how-to-join__faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-vip-club-how-to-join__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

@media (max-width: 768px) {
  .page-vip-club-how-to-join__hero-section {
    padding: 30px 15px 40px;
  }

  .page-vip-club-how-to-join__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-vip-club-how-to-join__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-vip-club-how-to-join__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-vip-club-how-to-join__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club-how-to-join__button {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
  }

  .page-vip-club-how-to-join__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    padding-top: 30px;
  }

  .page-vip-club-how-to-join__section-intro {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-vip-club-how-to-join__steps-section, 
  .page-vip-club-how-to-join__benefits-section, 
  .page-vip-club-how-to-join__faq-section {
    padding: 40px 15px;
  }

  .page-vip-club-how-to-join__steps-grid, 
  .page-vip-club-how-to-join__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club-how-to-join__step-card, 
  .page-vip-club-how-to-join__benefit-card {
    padding: 25px;
  }

  .page-vip-club-how-to-join__step-icon {
    max-width: 200px;
    margin-bottom: 15px;
  }

  .page-vip-club-how-to-join__step-title, 
  .page-vip-club-how-to-join__benefit-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .page-vip-club-how-to-join__step-description, 
  .page-vip-club-how-to-join__benefit-description {
    font-size: 0.9rem;
  }

  .page-vip-club-how-to-join__faq-question {
    font-size: 1.1rem;
  }

  .page-vip-club-how-to-join__faq-answer {
    font-size: 0.9rem;
  }

  /* Mobile image overflow prevention */
  .page-vip-club-how-to-join img {
    max-width: 100%;
    height: auto;
  }

  /* Specific content image rules to prevent shrinking below 200px */
  .page-vip-club-how-to-join__step-icon {
    min-width: 200px;
    min-height: 133px; /* maintain aspect ratio if possible, or just 200px height */
    max-width: 100%;
    height: auto;
  }
}