:root {
  --primary-color: #1A2E47; /* Deep Navy Blue */
  --secondary-color: #FFD700; /* Bright Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #1A2E47;
  --bg-light: #f9f9f9;
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.25);
}

/* Global page-specific styles */
.page-vip-program-levels {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default for body background #121212 */
  background-color: transparent; /* Main content background will be handled by sections */
}

/* Container for content */
.page-vip-program-levels__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section styling */
.page-vip-program-levels__hero-section {
  position: relative;
  padding: 120px 20px 60px; /* Desktop padding-top for fixed header */
  text-align: center;
  overflow: hidden;
}

.page-vip-program-levels__hero-section.page-vip-program-levels__dark-bg {
  background: var(--bg-dark);
  color: var(--text-light);
}

.page-vip-program-levels__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Overlay effect */
}