:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-login: #EA7C07;
  --border-color: #e0e0e0;
  --background-light: #f9f9f9;
}

/* Base styles for the VIP program page content */
.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background: var(--secondary-color); /* Body background is white */
}

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

.page-vip-program__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-vip-program__section-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* Hero Section */
.page-vip-program__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--primary-color) 0%, #30baf2 100%); /* Subtle gradient with primary color */
  color: var(--text-light);
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-vip-program__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-vip-program__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-vip-program__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-vip-program__main-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-program__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Button */
.page-vip-program__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-login); /* Use login color for primary CTA */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-vip-program__cta-button:hover {
  background: #ff8c00; /* Slightly darker orange on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.page-vip-program__benefits-section {
  padding: 80px 0;
  background: var(--background-light); /* Light background for contrast */
}

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

.page-vip-program__benefit-card {
  background: var(--secondary-color);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-vip-program__benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-program__benefit-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #f0f0f0;
}

.page-vip-program__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-vip-program__benefit-card p {
  font-size: 16px;
  color: #666666;
}

/* Tiers Section */
.page-vip-program__tiers-section {
  padding: 80px 0;
  background: var(--primary-color); /* Primary color background for this section */
  color: var(--text-light);
}

.page-vip-program__tiers-section .page-vip-program__section-title {
  color: var(--text-light);
}

.page-vip-program__tiers-section .page-vip-program__section-intro {
  color: rgba(255, 255, 255, 0.9);
}

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

.page-vip-program__tier-card {
  background: rgba(255, 255, 255, 0.15); /* Semi-transparent white background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-program__tier-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
}

.page-vip-program__tier-name {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-vip-program__tier-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.page-vip-program__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block; /* Center the list */
}

.page-vip-program__tier-features li {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-vip-program__tier-features li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* How to Join Section */
.page-vip-program__join-section {
  padding: 80px 0;
  background: var(--secondary-color);
}

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

.page-vip-program__step-item {
  background: var(--background-light);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-vip-program__step-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--text-light);
  font-size: 32px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-program__step-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.page-vip-program__step-item p {
  font-size: 16px;
  color: #666666;
}

.page-vip-program__step-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-vip-program__step-item a:hover {
  text-decoration: underline;
}

.page-vip-program__cta-center {
  text-align: center;
  margin-top: 60px;
}

.page-vip-program__btn-primary {
  background: var(--button-login);
  color: var(--text-light);
}

.page-vip-program__btn-primary:hover {
  background: #ff8c00;
}

/* FAQ Section */
.page-vip-program__faq-section {
  padding: 80px 0;
  background: var(--background-light);
}

.page-vip-program__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ容器样式 */
.page-vip-program__faq-item {
  margin-bottom: 15px;
  border-radius: 10px; /* Slightly larger radius */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

/* FAQ默认状态 - 答案隐藏 */
.page-vip-program__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px; /* Adjust padding */
  opacity: 0;
  background: #fdfdfd; /* Lighter background for answer */
  color: #555555;
}