/* style/promotions-referral-rewards.css */
.page-promotions-referral-rewards {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #000080; /* Dark blue background */
    line-height: 1.6;
}

.page-promotions-referral-rewards__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-promotions-referral-rewards__hero {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%); /* Gold to Dark Blue gradient */
    padding: 80px 20px;
    text-align: center;
    color: #000080; /* Dark text on lighter gradient part */
}

.page-promotions-referral-rewards__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #000080; /* Dark blue for strong contrast */
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.page-promotions-referral-rewards__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333; /* Slightly darker for readability */
}

.page-promotions-referral-rewards__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-referral-rewards__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-promotions-referral-rewards__cta-button--secondary {
    background-color: #000080; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-promotions-referral-rewards__cta-button--secondary:hover {
    background-color: #1a1a94; /* Slightly darker blue on hover */
    border-color: #e6c200;
}

.page-promotions-referral-rewards__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-promotions-referral-rewards__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions-referral-rewards__description {
    font-size: 1.1em;
    color: #e0e0e0; /* Light gray for readability on dark blue */
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-referral-rewards__how-it-works, 
.page-promotions-referral-rewards__benefits, 
.page-promotions-referral-rewards__terms, 
.page-promotions-referral-rewards__faq, 
.page-promotions-referral-rewards__call-to-action,
.page-promotions-referral-rewards__more-info {
    padding: 60px 0;
    background-color: #000080; /* Consistent dark blue background */
}

.page-promotions-referral-rewards__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.page-promotions-referral-rewards__step-item {
    background-color: rgba(255, 215, 0, 0.1); /* Light gold transparent background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #e0e0e0;
}

.page-promotions-referral-rewards__step-item:hover {
    transform: translateY(-10px);
}

.page-promotions-referral-rewards__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700); /* Gold glow */
}

.page-promotions-referral-rewards__step-item h3 {
    font-size: 1.6em;
    color: #FFD700; /* Gold for step titles */
    margin-bottom: 15px;
}

.page-promotions-referral-rewards__step-item p {
    font-size: 1em;
    color: #ccc; /* Lighter gray for body text */
}

.page-promotions-referral-rewards__benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-promotions-referral-rewards__benefit-item {
    background-color: rgba(0, 0, 128, 0.5); /* Dark blue transparent background */
    border: 1px solid #FFD700;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.page-promotions-referral-rewards__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px #FFD700); /* Gold glow */
}

.page-promotions-referral-rewards__benefit-item h4 {
    font-size: 1.4em;
    color: #FFD700; /* Gold for benefit titles */
    margin-bottom: 10px;
}

.page-promotions-referral-rewards__benefit-item p {
    font-size: 0.95em;
    color: #ccc;
}

.page-promotions-referral-rewards__terms-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    color: #e0e0e0;
}

.page-promotions-referral-rewards__terms-list li {
    background-color: rgba(255, 215, 0, 0.05); /* Very subtle gold tint */
    border-left: 4px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.05em;
}

.page-promotions-referral-rewards__faq-item {
    background-color: rgba(255, 215, 0, 0.1); /* Light gold transparent */
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px 25px;
    color: #fff;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-promotions-referral-rewards__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions-referral-rewards__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions-referral-rewards__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-referral-rewards__faq-answer {
    font-size: 1em;
    color: #ccc;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 10px;
}

.page-promotions-referral-rewards__action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-referral-rewards__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-referral-rewards__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-referral-rewards__section-title {
        font-size: 2em;
    }
    .page-promotions-referral-rewards__steps,
    .page-promotions-referral-rewards__benefit-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-referral-rewards__action-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-referral-rewards__cta-button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-promotions-referral-rewards__hero-title {
        font-size: 2em;
    }
    .page-promotions-referral-rewards__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-referral-rewards__section-title {
        font-size: 1.8em;
    }
    .page-promotions-referral-rewards__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}