.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f8f8; /* Light background for the page */
}

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

.page-vip-club__dark-section {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-vip-club__light-bg {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0;
  text-align: center;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: inherit; /* Inherits color from parent section */
}

.page-vip-club__section-description,
.page-vip-club__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

/* Hero Section */
.page-vip-club__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding-top for header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
}

.page-vip-club__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFF00; /* Register and Login Font color for hero title */
}

.page-vip-club__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-vip-club__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-vip-club__btn-primary:hover {
  background-color: #ff3333;
  border-color: #ff3333;
}

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-vip-club__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
  border-color: #ffffff;
}

.page-vip-club__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* Tiers Section */
.page-vip-club__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club__tier-card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-vip-club__tier-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-club__tier-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439; /* Brand primary color */
}

.page-vip-club__tier-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club__tier-guide {
  margin-top: 40px;
  font-style: italic;
}

/* Benefits Section */
.page-vip-club__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-vip-club__benefit-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-vip-club__benefit-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
}

.page-vip-club__benefit-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  color: #017439;
}

.page-vip-club__benefit-text {
  font-size: 1em;
  margin-bottom: 0;
  color: #555555;
}

/* Join Section */
.page-vip-club__join-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-vip-club__join-text {
  flex: 1;
  color: #ffffff;
}

.page-vip-club__join-steps {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-vip-club__join-steps li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-vip-club__join-steps strong {
  color: #FFFF00;
}

.page-vip-club__join-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.page-vip-club__join-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-vip-club__join-cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-vip-club__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-vip-club__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #017439;
  background-color: #f5f5f5;
  list-style: none; /* For details/summary */
}

.page-vip-club__faq-question::-webkit-details-marker {
  display: none;
}

.page-vip-club__faq-qtext {
  flex-grow: 1;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #017439;
}

.page-vip-club__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #555555;
}

.page-vip-club__faq-answer p {
  margin-top: 10px;
  margin-bottom: 0;
}

.page-vip-club__faq-answer a {
  color: #017439;
  text-decoration: underline;
}

.page-vip-club__faq-answer a:hover {
  color: #005f2f;
}

/* Final CTA Section */
.page-vip-club__cta-section {
  padding: 80px 0;
}

.page-vip-club__cta-section .page-vip-club__section-title {
  color: #FFFF00; /* Register and Login Font color */
}

.page-vip-club__cta-section .page-vip-club__btn-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.page-vip-club__cta-section .page-vip-club__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

/* General image responsiveness */
.page-vip-club img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .page-vip-club__container {
    padding: 15px;
  }

  .page-vip-club__section-title {
    font-size: 2em;
  }

  .page-vip-club__section-description,
  .page-vip-club__section-text {
    font-size: 1em;
  }

  /* Hero Section */
  .page-vip-club__hero-section {
    padding-top: 10px !important;
  }

  .page-vip-club__hero-image-wrapper {
    max-height: 300px;
  }

  .page-vip-club__hero-image {
    object-fit: contain; /* Prevent cropping on mobile */
    width: 100% !important;
    height: auto !important;
  }

  .page-vip-club__hero-content {
    padding: 20px 15px;
  }

  .page-vip-club__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-vip-club__hero-description {
    font-size: 0.95em;
  }

  .page-vip-club__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Buttons - Mobile specific */
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary,
  .page-vip-club a[class*="button"],
  .page-vip-club a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button containers - Mobile specific */
  .page-vip-club__hero-cta-buttons,
  .page-vip-club__join-cta-buttons,
  .page-vip-club__cta-section .page-vip-club__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-vip-club__join-cta-buttons {
    flex-direction: column;
  }

  /* Tiers Section */
  .page-vip-club__tiers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Benefits Section */
  .page-vip-club__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  /* Join Section */
  .page-vip-club__join-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-vip-club__join-text,
  .page-vip-club__join-image-wrapper {
    width: 100%;
  }

  /* FAQ Section */
  .page-vip-club__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-vip-club__faq-answer {
    padding: 0 20px 15px;
  }

  /* General image responsiveness for content area */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__hero-section,
  .page-vip-club__intro-section,
  .page-vip-club__tiers-section,
  .page-vip-club__benefits-section,
  .page-vip-club__join-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}