.page-vip-program {
  background-color: var(--bg-color-primary, #08160F); /* Main background color */
  color: var(--text-color-main, #F2FFF6); /* Main text color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-vip-program__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, body padding-top handles header offset */
  background-color: var(--bg-color-primary, #08160F);
}

.page-vip-program__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1920px; /* Max width for the image itself */
  margin-bottom: 30px; /* Space between image and content */
  object-fit: cover;
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-vip-program__main-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem); /* H1 font size with clamp */
  font-weight: 700;
  color: var(--text-color-main, #F2FFF6);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-vip-program__description {
  font-size: 1.1rem;
  color: var(--text-color-secondary, #A7D9B8);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-vip-program__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-color-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
}