/* style/vip-program-levels-privileges.css */
.page-vip-program-levels-privileges {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--bg-color, #FFFFFF); /* Fallback to white if --bg-color is not set */
}

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

.page-vip-program-levels-privileges__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #f0f8ff; /* Light background for hero section */
}

.page-vip-program-levels-privileges__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-vip-program-levels-privileges__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.85); /* Slightly transparent background for text */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-program-levels-privileges__main-title {
  color: #26A9E0;
  font-size: clamp(2em, 5vw, 3em); /* Responsive font size */
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-vip-program-levels-privileges__hero-description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 30px;
}

.page-vip-program-levels-privileges__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-vip-program-levels-privileges__section-title--light {
  color: #FFFFFF;
}

.page-vip-program-levels-privileges__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-vip-program-levels-privileges__text-block--light {
  color: #f0f0f0;
}

.page-vip-program-levels-privileges__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-program-levels-privileges__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-vip-program-levels-privileges__btn-primary:hover {
  background-color: #1e87c0;
  transform: translateY(-2px);
}

.page-vip-program-levels-privileges__introduction-section,
.page-vip-program-levels-privileges__privileges-overview,
.page-vip-program-levels-privileges__how-to-join,
.page-vip-program-levels-privileges__final-cta {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-vip-program-levels-privileges__levels-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Brand color as background */
  color: #FFFFFF; /* White text for dark background */
}

.page-vip-program-levels-privileges__level-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-vip-program-levels-privileges__level-card {
  background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white on blue background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-program-levels-privileges__level-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.25);
}

.page-vip-program-levels-privileges__level-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program-levels-privileges__level-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-vip-program-levels-privileges__level-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-vip-program-levels-privileges__privilege-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-vip-program-levels-privileges__privilege-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-vip-program-levels-privileges__privilege-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-vip-program-levels-privileges__privilege-icon {
  width: 100%;
  height: auto;
  max-width: 80px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program-levels-privileges__privilege-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-vip-program-levels-privileges__privilege-description {
  font-size: 0.95em;
  color: #555555;
}

.page-vip-program-levels-privileges__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-vip-program-levels-privileges__step-item {
  background-color: #f0f8ff;
  border-left: 5px solid #26A9E0;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-vip-program-levels-privileges__step-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-vip-program-levels-privileges__step-description {
  font-size: 1em;
  color: #444444;
}

.page-vip-program-levels-privileges__step-description a {
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-program-levels-privileges__step-description a:hover {
  text-decoration: underline;
}

.page-vip-program-levels-privileges__faq-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Brand color as background */
  color: #FFFFFF; /* White text for dark background */
}

.page-vip-program-levels-privileges__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-vip-program-levels-privileges__faq-item {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.page-vip-program-levels-privileges__faq-item[open] {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-vip-program-levels-privileges__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 600;
  color: #FFFFFF;
  list-style: none;
}

.page-vip-program-levels-privileges__faq-question::-webkit-details-marker {
  display: none;
}

.page-vip-program-levels-privileges__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-vip-program-levels-privileges__faq-item[open] .page-vip-program-levels-privileges__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-program-levels-privileges__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #e0e0e0;
}

.page-vip-program-levels-privileges__faq-answer p {
  margin-bottom: 0;
}

.page-vip-program-levels-privileges__final-cta {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-vip-program-levels-privileges__level-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-vip-program-levels-privileges__privilege-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-program-levels-privileges__hero-section {
    padding-bottom: 40px;
  }
  .page-vip-program-levels-privileges__hero-content {
    padding: 15px;
  }
  .page-vip-program-levels-privileges__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-vip-program-levels-privileges__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-vip-program-levels-privileges__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-vip-program-levels-privileges__text-block {
    font-size: 0.95em;
  }
  .page-vip-program-levels-privileges__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-vip-program-levels-privileges__level-cards,
  .page-vip-program-levels-privileges__privilege-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-program-levels-privileges__introduction-section,
  .page-vip-program-levels-privileges__levels-section,
  .page-vip-program-levels-privileges__privileges-overview,
  .page-vip-program-levels-privileges__how-to-join,
  .page-vip-program-levels-privileges__faq-section,
  .page-vip-program-levels-privileges__final-cta {
    padding: 40px 0;
  }

  /* Mobile specific image and video rules */
  .page-vip-program-levels-privileges img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-program-levels-privileges video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-program-levels-privileges__section,
  .page-vip-program-levels-privileges__card,
  .page-vip-program-levels-privileges__container,
  .page-vip-program-levels-privileges__level-card,
  .page-vip-program-levels-privileges__privilege-item,
  .page-vip-program-levels-privileges__step-item,
  .page-vip-program-levels-privileges__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-program-levels-privileges__hero-content {
    max-width: calc(100% - 30px) !important; /* Adjust for padding */
  }
  .page-vip-program-levels-privileges__faq-list {
    max-width: 100% !important;
  }
  .page-vip-program-levels-privileges__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-vip-program-levels-privileges__faq-answer {
    padding: 0 20px 15px;
  }
}