:root {
    --primary-color: #0A2240; /* Dark Blue */
    --secondary-color: #FFD700; /* Gold */
    --accent-color: #DC143C; /* Crimson Red */
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #F8F8F8;
    --bg-dark: var(--primary-color);
}

.page-vip-club {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.page-vip-club h1, .page-vip-club h2, .page-vip-club h3, .page-vip-club h4, .page-vip-club h5, .page-vip-club h6 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-vip-club h1 {
    font-size: 2.8em;
    color: var(--text-light); /* For hero section */
}

.page-vip-club h2 {
    font-size: 2.2em;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-top: 40px;
    color: var(--primary-color);
}

.page-vip-club h3 {
    font-size: 1.8em;
    color: var(--primary-color);
}

.page-vip-club p {
    margin-bottom: 15px;
}

.page-vip-club a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-vip-club a:hover {
    color: var(--accent-color);
}

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

/* Hero Section */
.page-vip-club .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--primary-color); /* Fallback */
    overflow: hidden; /* Ensure image doesn't overflow */
    min-height: 500px; /* Minimum height for hero */
}

.page-vip-club .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2; /* Ensure content is above image */
}

.page-vip-club .hero-image {
    position: absolute; /* Position the image absolutely */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Place image behind content */
}

.page-vip-club .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area */
    display: block;
    opacity: 0.3; /* Slightly dim the image to make text readable */
}

.page-vip-club .hero-content {
    position: relative;
    z-index: 3; /* Ensure content is above image and overlay */
    text-align: center;
    width: 100%;
    color: var(--text-light);
    padding: 40px 20px;
}

.page-vip-club .hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club .hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-vip-club .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.page-vip-club .cta-button:hover {
    background: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Sections */
.page-vip-club .section {
    padding: 40px 0;
    margin-bottom: 20px;
    background-color: var(--bg-light);
    border-bottom: 1px solid #eee;
}

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

.page-vip-club .section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* VIP Levels */
.page-vip-club .vip-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-vip-club .vip-level-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-vip-club .vip-level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-vip-club .vip-level-card img {
    width: 150px; /* Larger image for content */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.page-vip-club .vip-level-card h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-vip-club .vip-level-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 15px;
}

.page-vip-club .vip-level-card ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.page-vip-club .vip-level-card ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

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

.page-vip-club .benefit-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-vip-club .benefit-item img {
    width: 100%; /* Ensure images are larger, not icons */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.page-vip-club .benefit-item h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* How to Join Section */
.page-vip-club .how-to-join-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.page-vip-club .step-card {
    background: #ffffff;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    flex: 1 1 calc(33% - 60px); /* Three columns on desktop */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px;
}

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

.page-vip-club .step-card .step-number {
    font-size: 2.5em;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.page-vip-club .step-card h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* FAQ Section */
.page-vip-club .faq-container {
    margin-top: 30px;
}

.page-vip-club .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
}

.page-vip-club .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-vip-club .faq-question:hover {
  background-color: #1a3a60; /* Slightly lighter primary on hover */
}

.page-vip-club .faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-vip-club .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.page-vip-club .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.page-vip-club .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to show content */
  padding: 20px;
  border-top: 1px solid #eee;
}

.page-vip-club .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.page-vip-club .faq-answer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-vip-club .hero-content h1 {
        font-size: 2.8em;
    }
    .page-vip-club .hero-content p {
        font-size: 1.1em;
    }
    .page-vip-club h2 {
        font-size: 1.8em;
    }
    .page-vip-club h3 {
        font-size: 1.5em;
    }
    .page-vip-club .vip-levels-grid,
    .page-vip-club .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-vip-club .step-card {
        flex: 1 1 calc(50% - 30px); /* Two columns on tablet */
    }
}

@media (max-width: 768px) {
    .page-vip-club .hero-section {
        padding: 40px 15px;
        min-height: 400px;
    }
    .page-vip-club .hero-content h1 {
        font-size: 2.2em;
    }
    .page-vip-club .hero-content p {
        font-size: 1em;
    }
    .page-vip-club .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-vip-club h2 {
        font-size: 1.6em;
    }
    .page-vip-club h3 {
        font-size: 1.3em;
    }
    .page-vip-club .container {
        padding: 15px;
    }
    .page-vip-club .vip-level-card img {
        width: 100px;
        height: 100px;
    }
    .page-vip-club .step-card {
        flex: 1 1 100%; /* Single column on mobile */
    }
    .page-vip-club .faq-question {
        padding: 12px 15px;
    }
    .page-vip-club .faq-question h3 {
        font-size: 1em;
    }
    .page-vip-club .faq-answer {
        padding: 0 15px;
    }
    .page-vip-club .faq-item.active .faq-answer {
        padding: 15px;
    }
}