.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f8fa;
}

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

.page-vip-club-section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-club-section:nth-of-type(even) {
  background-color: #e9eff3;
}

.page-vip-club-heading {
  font-size: 2.5em;
  color: #0047AB;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-vip-club-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
  text-align: left;
}

.page-vip-club-link {
  color: #0047AB;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club-link:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Hero Section */
.page-vip-club-hero {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #003a8a; /* Darker shade of primary for background */
  color: #ffffff;
  overflow: hidden;
}

.page-vip-club-hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-vip-club-hero-image {
  width: 100%;
  max-width: 1000px; /* Adjust max-width for image */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  object-fit: cover;
}

.page-vip-club-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-vip-club-hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 900;
}

.page-vip-club-hero-description {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #0047AB;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club-cta-secondary {
  background: #0047AB;
  color: #FFD700;
}

.page-vip-club-cta-secondary:hover {
  background: #003a8a;
  color: #FFD700;
}

.page-vip-club-cta-text {
  background: none;
  border: 2px solid #0047AB;
  color: #0047AB;
  box-shadow: none;
  padding: 15px 30px;
}

.page-vip-club-cta-text:hover {
  background: #0047AB;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-vip-club-benefits .page-vip-club-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club-benefits .page-vip-club-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-vip-club-benefits .page-vip-club-card-image {
  width: 100%;
  max-width: 300px; /* Ensure image is large enough */
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club-benefits .page-vip-club-card-title {
  font-size: 1.5em;
  color: #0047AB;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-benefits .page-vip-club-card-description {
  font-size: 1em;
  color: #666;
  text-align: center;
}

/* Tiers Section */
.page-vip-club-tiers .page-vip-club-tier-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-vip-club-tiers .page-vip-club-tier-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-vip-club-tiers .page-vip-club-tier-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-vip-club-tiers .page-vip-club-tier-title {
  font-size: 1.8em;
  color: #0047AB;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-tiers .page-vip-club-tier-description {
  font-size: 1em;
  color: #666;
}

/* How to Join Section */
.page-vip-club-join .page-vip-club-steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-vip-club-join .page-vip-club-steps-list li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  position: relative;
  padding-left: 60px;
  text-align: left;
  font-size: 1.1em;
  color: #333;
}

.page-vip-club-join .page-vip-club-steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #0047AB;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  font-weight: bold;
}

.page-vip-club-join .page-vip-club-steps-list li p {
  margin: 0;
}

/* Exclusive Offers Section */
.page-vip-club-exclusive-offers .page-vip-club-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-vip-club-exclusive-offers .page-vip-club-list li {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-vip-club-exclusive-offers .page-vip-club-list li strong {
  color: #0047AB;
}

/* Support Section */
.page-vip-club-support .page-vip-club-support-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-support .page-vip-club-support-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club-support .page-vip-club-support-icon {
  width: 100%;
  max-width: 250px; /* Ensure images are large enough */
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-vip-club-support .page-vip-club-support-title {
  font-size: 1.5em;
  color: #0047AB;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-support .page-vip-club-support-description {
  font-size: 1em;
  color: #666;
  text-align: center;
}

/* FAQ Section */
.page-vip-club-faq-list {
  margin-top: 40px;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #0047AB;
  font-weight: bold;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #0047AB;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 15px 25px;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
}

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

.page-vip-club-news-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club-news-image {
  width: 100%;
  height: 220px; /* Ensure images are large enough */
  object-fit: cover;
}

.page-vip-club-news-card h3 {
  padding: 20px 20px 0;
  margin: 0;
}

.page-vip-club-news-card h3 a {
  font-size: 1.4em;
  color: #0047AB;
  text-decoration: none;
  font-weight: bold;
  display: block;
}

.page-vip-club-news-card h3 a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-vip-club-news-excerpt {
  padding: 10px 20px;
  font-size: 0.95em;
  color: #666;
}

.page-vip-club-news-date {
  display: block;
  font-size: 0.85em;
  color: #999;
  padding: 0 20px 20px;
}

/* Bottom CTA */
.page-vip-club-cta-bottom {
  background: linear-gradient(90deg, #0047AB, #003a8a);
  color: #ffffff;
  padding: 80px 20px;
}

.page-vip-club-cta-bottom-content {
  max-width: 900px;
}

.page-vip-club-cta-bottom .page-vip-club-heading {
  color: #FFD700;
}

.page-vip-club-cta-bottom .page-vip-club-paragraph {
  color: #ffffff;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club-hero-title {
    font-size: 3em;
  }
  .page-vip-club-hero-description {
    font-size: 1.2em;
  }
  .page-vip-club-heading {
    font-size: 2em;
  }
  .page-vip-club-paragraph {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-hero {
    padding: 60px 15px;
  }
  .page-vip-club-hero-image {
    margin-bottom: 30px;
  }
  .page-vip-club-hero-title {
    font-size: 2.5em;
  }
  .page-vip-club-hero-description {
    font-size: 1.1em;
  }
  .page-vip-club-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-vip-club-section {
    padding: 40px 0;
  }
  .page-vip-club-heading {
    font-size: 1.8em;
  }
  .page-vip-club-benefits .page-vip-club-grid,
  .page-vip-club-tiers .page-vip-club-tier-list,
  .page-vip-club-support .page-vip-club-support-details,
  .page-vip-club-news-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club-join .page-vip-club-steps-list li {
    padding-left: 50px;
  }
  .page-vip-club-join .page-vip-club-steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-club-hero-title {
    font-size: 2em;
  }
  .page-vip-club-hero-description {
    font-size: 1em;
  }
  .page-vip-club-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club-heading {
    font-size: 1.5em;
  }
  .page-vip-club-paragraph {
    font-size: 0.95em;
  }
  .page-vip-club-benefits .page-vip-club-card-image,
  .page-vip-club-support .page-vip-club-support-icon {
    max-width: 200px;
    height: 150px;
  }
  .page-vip-club-news-card h3 a {
    font-size: 1.2em;
  }
  .page-vip-club-news-excerpt {
    font-size: 0.9em;
  }
  .page-vip-club-exclusive-offers .page-vip-club-list li {
    font-size: 1em;
    padding: 15px 20px;
  }
}