/* style/vip-program.css */

/* Base Styles & Typography for .page-vip-program */
.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is from shared.css */
}

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

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

.page-vip-program__section-title {
  font-size: 3em;
  margin-bottom: 30px;
  color: #26A9E0; /* Primary color for titles on light backgrounds */
  font-weight: bold;
}

.page-vip-program__section-title--white {
  color: #ffffff; /* White color for titles on dark backgrounds */
}

.page-vip-program__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333; /* Default text color for light backgrounds */
}

.page-vip-program__text-block--white {
  color: #ffffff; /* White text color for dark backgrounds */
}