.page-index-vip-member-privileges {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-index-vip-member-privileges__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-vip-member-privileges__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-index-vip-member-privileges__section-title {
  font-size: 2.8em;
  color: #003366;
  margin-bottom: 25px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-index-vip-member-privileges__text {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-vip-member-privileges__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
}

.page-index-vip-member-privileges__btn--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-index-vip-member-privileges__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-vip-member-privileges__btn--secondary {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-index-vip-member-privileges__btn--secondary:hover {
  background-color: #003366;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-index-vip-member-privileges__link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-index-vip-member-privileges__link:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-index-vip-member-privileges__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #003366, #1a4a80);
}

.page-index-vip-member-privileges__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-index-vip-member-privileges__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-index-vip-member-privileges__hero-title {
  font-size: 4em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-vip-member-privileges__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Intro Features */
.page-index-vip-member-privileges__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-vip-member-privileges__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33% - 40px);
  min-width: 280px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-vip-member-privileges__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-index-vip-member-privileges__feature-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-vip-member-privileges__feature-text {
  font-size: 1em;
  color: #666;
}

/* VIP Levels */
.page-index-vip-member-privileges__image-full-width {
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-index-vip-member-privileges__level-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #003366;
}

.page-index-vip-member-privileges__level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-index-vip-member-privileges__level-card:nth-child(even) {
  border-top-color: #FFD700;
}

.page-index-vip-member-privileges__level-title {
  font-size: 2.2em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-vip-member-privileges__level-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-index-vip-member-privileges__level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-vip-member-privileges__level-benefits li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #444;
  position: relative;
  padding-left: 25px;
}

.page-index-vip-member-privileges__level-benefits li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Exclusive Services */
.page-index-vip-member-privileges__service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.page-index-vip-member-privileges__service-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33% - 40px);
  min-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-vip-member-privileges__service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-index-vip-member-privileges__service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD700;
}

.page-index-vip-member-privileges__service-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-vip-member-privileges__service-text {
  font-size: 1em;
  color: #666;
}

/* How to Join */
.page-index-vip-member-privileges__steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-vip-member-privileges__steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.page-index-vip-member-privileges__steps li:hover {
  transform: translateX(5px);
}

.page-index-vip-member-privileges__step-number {
  font-size: 2.2em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 20px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003366;
  border-radius: 50%;
  color: #fff;
}

.page-index-vip-member-privileges__steps li p {
  margin: 0;
  font-size: 1.1em;
  color: #333;
}

/* FAQ Section */
.page-index-vip-member-privileges__faq {
  background-color: #f4f7f6;
}

.page-index-vip-member-privileges__accordion {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-index-vip-member-privileges__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-vip-member-privileges__accordion-header {
  background-color: #003366;
  color: #fff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-index-vip-member-privileges__accordion-header:hover {
  background-color: #002244;
}

.page-index-vip-member-privileges__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-vip-member-privileges__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-vip-member-privileges__accordion-content {
  padding: 0 25px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-index-vip-member-privileges__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-index-vip-member-privileges__accordion-content p {
  margin: 0;
  color: #444;
  font-size: 1em;
}

/* Call to Action Section */
.page-index-vip-member-privileges__cta {
  background: linear-gradient(135deg, #003366, #1a4a80);
  color: #fff;
  padding: 80px 0;
}

.page-index-vip-member-privileges__cta .page-index-vip-member-privileges__section-title {
  color: #FFD700;
}

.page-index-vip-member-privileges__cta .page-index-vip-member-privileges__text {
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-vip-member-privileges__hero-title {
    font-size: 3em;
  }
  .page-index-vip-member-privileges__hero-subtitle {
    font-size: 1.3em;
  }
  .page-index-vip-member-privileges__feature-item,
  .page-index-vip-member-privileges__service-item {
    flex: 1 1 calc(50% - 30px);
  }
  .page-index-vip-member-privileges__level-card {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .page-index-vip-member-privileges__section {
    padding: 40px 0;
  }
  .page-index-vip-member-privileges__section-title {
    font-size: 2em;
  }
  .page-index-vip-member-privileges__hero {
    height: 400px;
  }
  .page-index-vip-member-privileges__hero-title {
    font-size: 2.5em;
  }
  .page-index-vip-member-privileges__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-vip-member-privileges__feature-item,
  .page-index-vip-member-privileges__service-item {
    flex: 1 1 100%;
  }
  .page-index-vip-member-privileges__level-card {
    flex: 1 1 100%;
  }
  .page-index-vip-member-privileges__steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-index-vip-member-privileges__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-index-vip-member-privileges__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-index-vip-member-privileges__accordion-content {
    padding: 15px 20px;
  }
}