/* style/resources-ww88-vip-program.css */

.page-resources-ww88-vip-program {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-resources-ww88-vip-program__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources-ww88-vip-program__hero-content {
  z-index: 10;
  max-width: 800px;
}

.page-resources-ww88-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFCC00; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-ww88-vip-program__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  font-weight: 300;
}

.page-resources-ww88-vip-program__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color for CTA */
  color: #003366; /* Main color for text on CTA */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-ww88-vip-program__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-resources-ww88-vip-program__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px; /* Adjust size as needed */
  height: auto;
  opacity: 0.2;
  z-index: 5;
}

.page-resources-ww88-vip-program__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-resources-ww88-vip-program__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page-resources-ww88-vip-program__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-ww88-vip-program__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-resources-ww88-vip-program__inline-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-ww88-vip-program__inline-link:hover {
  text-decoration: underline;
  color: #FFCC00;
}

.page-resources-ww88-vip-program__secondary-cta-button {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFCC00;
  cursor: pointer;
  margin-top: 20px;
}

.page-resources-ww88-vip-program__secondary-cta-button:hover {
  background-color: #004080;
  transform: translateY(-2px);
}

.page-resources-ww88-vip-program__intro-section, 
.page-resources-ww88-vip-program__benefits-section, 
.page-resources-ww88-vip-program__how-to-join-section, 
.page-resources-ww88-vip-program__faq-section, 
.page-resources-ww88-vip-program__conclusion-section {
  padding: 40px 0;
}

.page-resources-ww88-vip-program__vip-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-ww88-vip-program__vip-tier-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #003366;
}

.page-resources-ww88-vip-program__vip-tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-ww88-vip-program__vip-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-ww88-vip-program__tier-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-ww88-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-resources-ww88-vip-program__tier-benefits li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.page-resources-ww88-vip-program__tier-benefits li::before {
  content: '✓';
  color: #FFCC00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-resources-ww88-vip-program__how-to-join-section {
  background-color: #f0f5f9;
}

.page-resources-ww88-vip-program__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-ww88-vip-program__step-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid #FFCC00;
}

.page-resources-ww88-vip-program__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-ww88-vip-program__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-ww88-vip-program__step-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-ww88-vip-program__step-card p {
  color: #555;
  font-size: 1em;
}

.page-resources-ww88-vip-program__faq-section {
  background-color: #fff;
}

.page-resources-ww88-vip-program__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-ww88-vip-program__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-ww88-vip-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFCC00;
}

.page-resources-ww88-vip-program__faq-question.active::after {
  content: '-';
}

.page-resources-ww88-vip-program__faq-answer {
  font-size: 1.05em;
  color: #666;
  display: none;
  padding-top: 10px;
}

.page-resources-ww88-vip-program__faq-answer.active {
  display: block;
}

.page-resources-ww88-vip-program__conclusion-section {
  text-align: center;
  background-color: #003366;
  color: #fff;
  padding: 60px 0;
}

.page-resources-ww88-vip-program__conclusion-section .page-resources-ww88-vip-program__section-title {
  color: #FFCC00;
}

.page-resources-ww88-vip-program__conclusion-section .page-resources-ww88-vip-program__text-content {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-ww88-vip-program__conclusion-section .page-resources-ww88-vip-program__inline-link {
  color: #FFCC00;
}

.page-resources-ww88-vip-program__conclusion-section .page-resources-ww88-vip-program__inline-link:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .page-resources-ww88-vip-program__hero-title {
    font-size: 2.5em;
  }

  .page-resources-ww88-vip-program__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-ww88-vip-program__section-title {
    font-size: 2em;
  }

  .page-resources-ww88-vip-program__vip-tiers, 
  .page-resources-ww88-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-ww88-vip-program__hero-image-wrapper {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .page-resources-ww88-vip-program__hero-title {
    font-size: 2em;
  }

  .page-resources-ww88-vip-program__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-ww88-vip-program__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-ww88-vip-program__section-title {
    font-size: 1.8em;
  }

  .page-resources-ww88-vip-program__text-content {
    font-size: 1em;
  }

  .page-resources-ww88-vip-program__faq-question {
    font-size: 1.1em;
  }

  .page-resources-ww88-vip-program__hero-image-wrapper {
    display: none; /* Hide on very small screens if it obstructs content */
  }
}