/* style/vip-privileges-tier-system-intro.css */
.page-vip-privileges-tier-system-intro {
  font-family: 'Arial', sans-serif;
  color: #2C3E50; /* Dark blue for primary text */
  background-color: #f8f8f8; /* Light background */
  line-height: 1.6;
}

.page-vip-privileges-tier-system-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-privileges-tier-system-intro__hero-section {
  background: linear-gradient(135deg, #FFD700, #2C3E50);
  color: #FFFFFF; /* White text on dark/gold background */
  padding: 80px 0;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-vip-privileges-tier-system-intro__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-vip-privileges-tier-system-intro__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-vip-privileges-tier-system-intro__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #2C3E50; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-vip-privileges-tier-system-intro__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-vip-privileges-tier-system-intro__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-vip-privileges-tier-system-intro__section:nth-of-type(odd) {
  background-color: #fdfdfd;
}

.page-vip-privileges-tier-system-intro__section-title {
  font-size: 2.5em;
  color: #2C3E50; /* Dark blue for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-privileges-tier-system-intro__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-vip-privileges-tier-system-intro__text-content {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.page-vip-privileges-tier-system-intro__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-vip-privileges-tier-system-intro__image-wrapper--wide {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-privileges-tier-system-intro__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-vip-privileges-tier-system-intro__tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-privileges-tier-system-intro__tier-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-vip-privileges-tier-system-intro__tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.page-vip-privileges-tier-system-intro__tier-name {
  font-size: 1.8em;
  color: #FFD700; /* Gold for tier names */
  margin-bottom: 15px;
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-vip-privileges-tier-system-intro__tier-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-privileges-tier-system-intro__tier-benefits {
  list-style: none;
  padding: 0;
  margin-top: auto; /* Push benefits to bottom */
}

.page-vip-privileges-tier-system-intro__tier-benefits li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #333;
  font-size: 0.95em;
}

.page-vip-privileges-tier-system-intro__tier-benefits li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-vip-privileges-tier-system-intro__inline-link {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-vip-privileges-tier-system-intro__inline-link:hover {
  color: #e6c200; /* Slightly darker gold on hover */
  text-decoration: underline;
}

.page-vip-privileges-tier-system-intro__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-privileges-tier-system-intro__benefit-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-privileges-tier-system-intro__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.page-vip-privileges-tier-system-intro__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-vip-privileges-tier-system-intro__benefit-title {
  font-size: 1.5em;
  color: #2C3E50; /* Dark blue for benefit titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-privileges-tier-system-intro__benefit-description {
  font-size: 1em;
  color: #555;
}

.page-vip-privileges-tier-system-intro__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-vip-privileges-tier-system-intro__faq-question {
  font-size: 1.3em;
  color: #2C3E50; /* Dark blue for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-vip-privileges-tier-system-intro__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-vip-privileges-tier-system-intro__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-vip-privileges-tier-system-intro__faq-answer {
  font-size: 1em;
  color: #555;
  padding-left: 20px;
  border-left: 3px solid #FFD700; /* Gold border for answer */
  margin-top: 15px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-vip-privileges-tier-system-intro__faq-answer.active {
  display: block;
}

.page-vip-privileges-tier-system-intro__cta-final {
  background-color: #2C3E50; /* Dark blue background for final CTA */
  color: #FFFFFF;
  text-align: center;
  padding: 70px 0;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-vip-privileges-tier-system-intro__cta-final .page-vip-privileges-tier-system-intro__section-title {
  color: #FFD700; /* Gold title on dark background */
}

.page-vip-privileges-tier-system-intro__cta-final .page-vip-privileges-tier-system-intro__section-title::after {
  background-color: #FFFFFF; /* White underline on dark background */
}

.page-vip-privileges-tier-system-intro__cta-final .page-vip-privileges-tier-system-intro__text-content {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-vip-privileges-tier-system-intro__cta-buttons-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-vip-privileges-tier-system-intro__cta-button--secondary {
  background-color: #f0f0f0;
  color: #2C3E50;
}

.page-vip-privileges-tier-system-intro__cta-button--secondary:hover {
  background-color: #d0d0d0;
  transform: translateY(-2px);
}

.page-vip-privileges-tier-system-intro__disclaimer {
  font-size: 0.9em;
  color: #ccc;
  margin-top: 40px;
  opacity: 0.8;
}

.page-vip-privileges-tier-system-intro .highlight-text {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-vip-privileges-tier-system-intro__main-title {
    font-size: 2.5em;
  }
  .page-vip-privileges-tier-system-intro__hero-description {
    font-size: 1.1em;
  }
  .page-vip-privileges-tier-system-intro__section-title {
    font-size: 2em;
  }
  .page-vip-privileges-tier-system-intro__tier-grid,
  .page-vip-privileges-tier-system-intro__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-privileges-tier-system-intro__hero-section {
    padding: 60px 0;
  }
  .page-vip-privileges-tier-system-intro__main-title {
    font-size: 2em;
  }
  .page-vip-privileges-tier-system-intro__hero-description {
    font-size: 1em;
  }
  .page-vip-privileges-tier-system-intro__section {
    padding: 40px 0;
  }
  .page-vip-privileges-tier-system-intro__section-title {
    font-size: 1.8em;
  }
  .page-vip-privileges-tier-system-intro__cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }
  .page-vip-privileges-tier-system-intro__cta-button {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-vip-privileges-tier-system-intro__main-title {
    font-size: 1.8em;
  }
  .page-vip-privileges-tier-system-intro__section-title {
    font-size: 1.5em;
  }
  .page-vip-privileges-tier-system-intro__tier-grid,
  .page-vip-privileges-tier-system-intro__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-privileges-tier-system-intro__cta-button {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-vip-privileges-tier-system-intro__faq-question {
    font-size: 1.1em;
    padding-right: 20px;
  }
  .page-vip-privileges-tier-system-intro__faq-answer {
    padding-left: 15px;
  }
}