:root {
    --primary-color: #007BFF;
    --secondary-color: #FFC107;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #001f4d; /* A darker shade of primary for sections */
    --card-bg-light: #ffffff;
    --card-bg-dark: rgba(255, 255, 255, 0.1);
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
}

.page-vip-program {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default text color for light body background */
    background-color: var(--background-light); /* Assuming shared.css sets body to light */
}

/* Fixed header offset */
.page-vip-program {
    padding-top: var(--header-offset, 120px); /* Desktop padding */
}

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

.page-vip-program__section {
    padding: 60px 0;
    text-align: center;
}

.page-vip-program__dark-section {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-vip-program__dark-section .page-vip-program__section-title,
.page-vip-program__dark-section .page-vip-program__text-block,
.page-vip-program__dark-section .page-vip-program__card-title,
.page-vip-program__dark-section .page-vip-program__level-card p {
    color: var(--text-color-light);
}

.page-vip-program__section-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-vip-program__dark-section .page-vip-program__section-title {
    color: var(--secondary-color);
}

.page-vip-program__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* 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;
  background: linear-gradient(135deg, var(--primary-color), var(--background-dark)); /* Darker gradient for hero */
  color: var(--text-color-light);
}

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

.page-vip-program__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.page-vip-program__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

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

.page-vip-program__main-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Use secondary color for main title for contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-vip-program__hero-description {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}