.page-promotions-vip-benefits {
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-vip-benefits__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding to avoid double margin with body padding-top */
  margin-bottom: 40px;
  text-align: center;
  background-color: #017439; /* Use primary color for hero background */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-benefits__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-promotions-vip-benefits__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-vip-benefits__hero-content {
  max-width: 900px;
  padding: 0 20px 40px;
  box-sizing: border-box;
}

.page-promotions-vip-benefits__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-benefits__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-promotions-vip-benefits__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1em;
  color: #FFFF00; /* Custom color for register/login font */
  background-color: #C30808; /* Custom color for register/login button */
  border: none;
  cursor: pointer;
}

.page-promotions-vip-benefits__cta-button:hover {
  transform: translateY(-2px);
  background-color: #a30606;
}

.page-promotions-vip-benefits__intro-section,
.page-promotions-vip-benefits__tiers-section,
.page-promotions-vip-benefits__perks-section,
.page-promotions-vip-benefits__join-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.page-promotions-vip-benefits__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #017439;
}

.page-promotions-vip-benefits__section-title--gradient {
  background: linear-gradient(90deg, #ff9500, #ff5e3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-promotions-vip-benefits__intro-text,
.page-promotions-vip-benefits__join-text {
  font-size: 1.05em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #555555;
}

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

.page-promotions-vip-benefits__tier-card,
.page-promotions-vip-benefits__perk-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-vip-benefits__tier-card:hover,
.page-promotions-vip-benefits__perk-item:hover {
  transform: translateY(-5px);
}

.page-promotions-vip-benefits__tier-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439;
}

.page-promotions-vip-benefits__tier-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-promotions-vip-benefits__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-promotions-vip-benefits__tier-features li {
  margin-bottom: 10px;
  color: #444444;
  position: relative;
  padding-left: 25px;
}

.page-promotions-vip-benefits__tier-features li::before {
  content: '✔';
  color: #017439;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-vip-benefits__perk-image {
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  max-width: 400px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-vip-benefits__perk-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #017439;
}

.page-promotions-vip-benefits__perk-description {
  font-size: 0.95em;
  color: #666666;
}

.page-promotions-vip-benefits__join-actions {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 849px) {
  .page-promotions-vip-benefits__hero-section {
    padding-top: 10px;
    margin-bottom: 20px;
  }
  .page-promotions-vip-benefits__hero-image-wrapper {
    margin-bottom: 10px;
  }
  .page-promotions-vip-benefits__hero-image {
    aspect-ratio: 16/9; /* Adjust aspect ratio for mobile hero */
  }
  .page-promotions-vip-benefits__hero-content {
    padding: 0 15px 20px;
  }
  .page-promotions-vip-benefits__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }
  .page-promotions-vip-benefits__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-promotions-vip-benefits__intro-section,
  .page-promotions-vip-benefits__tiers-section,
  .page-promotions-vip-benefits__perks-section,
  .page-promotions-vip-benefits__join-section {
    padding: 30px 15px;
    margin: 0 auto 20px;
  }
  .page-promotions-vip-benefits__tiers-grid,
  .page-promotions-vip-benefits__perks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-vip-benefits__perk-image {
    min-width: 200px;
    min-height: 150px;
    max-width: 100%;
    height: auto;
  }
  .page-promotions-vip-benefits__join-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-vip-benefits__cta-button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 549px) {
  .page-promotions-vip-benefits__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-promotions-vip-benefits__hero-description {
    font-size: 0.95em;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 1.6em;
  }
  .page-promotions-vip-benefits__perk-image {
    min-width: 200px;
    min-height: 150px;
    max-width: 100%;
    height: auto;
  }
}

/* Ensure content area images do not cause overflow */
@media (max-width: 768px) {
  .page-promotions-vip-benefits img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-promotions-vip-benefits {
    overflow-x: hidden;
  }
}