/* style/promotions-vip-exclusive-privileges.css */
.page-promotions-vip-exclusive-privileges {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light gray for general text on dark background */
    background-color: #0A2463; /* Deep blue main background */
}

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

.page-promotions-vip-exclusive-privileges__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-vip-exclusive-privileges__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 800px;
    opacity: 0.2;
    z-index: 0;
}

@media (max-width: 768px) {
    .page-promotions-vip-exclusive-privileges__hero-image {
        width: 100%;
        right: -20%;
        bottom: -20%;
    }
}

.page-promotions-vip-exclusive-privileges__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-promotions-vip-exclusive-privileges__hero-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-promotions-vip-exclusive-privileges__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Deep blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-promotions-vip-exclusive-privileges__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-promotions-vip-exclusive-privileges__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-promotions-vip-exclusive-privileges__content-section {
    padding: 60px 0;
    background-color: #0A2463;
    color: #F0F0F0;
}

.page-promotions-vip-exclusive-privileges__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-exclusive-privileges__subsection-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-section titles */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-promotions-vip-exclusive-privileges__paragraph {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #E0E0E0;
}

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

.page-promotions-vip-exclusive-privileges__inline-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-promotions-vip-exclusive-privileges__vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-promotions-vip-exclusive-privileges__vip-tier-card {
    background-color: #1A3E8A; /* Darker blue card background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-vip-exclusive-privileges__vip-tier-card:hover {
    transform: translateY(-5px);
    background-color: #2A52B0;
}

.page-promotions-vip-exclusive-privileges__vip-tier-card h4 {
    color: #FFD700; /* Gold for tier titles */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions-vip-exclusive-privileges__vip-tier-card p {
    color: #C0C0C0;
    font-size: 0.95em;
    line-height: 1.6;
}

.page-promotions-vip-exclusive-privileges__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-exclusive-privileges__commitment-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-promotions-vip-exclusive-privileges__commitment-list li {
    background-color: #1A3E8A;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-exclusive-privileges__commitment-list li strong {
    color: #FFD700;
}

.page-promotions-vip-exclusive-privileges__faq-item {
    background-color: #1A3E8A;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-exclusive-privileges__faq-question {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-vip-exclusive-privileges__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive-privileges__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-vip-exclusive-privileges__faq-answer {
    color: #C0C0C0;
    font-size: 1em;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-promotions-vip-exclusive-privileges__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content length */
    padding-top: 15px;
}

.page-promotions-vip-exclusive-privileges .highlight-keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-vip-exclusive-privileges__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-vip-exclusive-privileges__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-vip-exclusive-privileges__section-title {
        font-size: 2em;
    }
    .page-promotions-vip-exclusive-privileges__subsection-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-vip-exclusive-privileges__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-vip-exclusive-privileges__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-vip-exclusive-privileges__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-vip-exclusive-privileges__section-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive-privileges__subsection-title {
        font-size: 1.3em;
    }
    .page-promotions-vip-exclusive-privileges__paragraph {
        font-size: 0.95em;
    }
    .page-promotions-vip-exclusive-privileges__vip-tiers {
        grid-template-columns: 1fr;
    }
    .page-promotions-vip-exclusive-privileges__hero-section {
        padding: 60px 0 30px;
    }
}

@media (max-width: 480px) {
    .page-promotions-vip-exclusive-privileges__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-vip-exclusive-privileges__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-vip-exclusive-privileges__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-vip-exclusive-privileges__section-title {
        font-size: 1.5em;
    }
    .page-promotions-vip-exclusive-privileges__subsection-title {
        font-size: 1.2em;
    }
    .page-promotions-vip-exclusive-privileges__container {
        padding: 0 15px;
    }
}