/* style/promotions-789b-referral-program.css */
.page-promotions-789b-referral-program {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Primary dark blue background */
}

.page-promotions-789b-referral-program .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-789b-referral-program h1,
.page-promotions-789b-referral-program h2,
.page-promotions-789b-referral-program h3 {
    color: #FFD700; /* Gold for headings */
    text-align: center;
    margin-bottom: 25px;
}

.page-promotions-789b-referral-program h1 {
    font-size: 2.8em;
    margin-bottom: 30px;
    line-height: 1.2;
}

.page-promotions-789b-referral-program h2 {
    font-size: 2.2em;
    margin-top: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions-789b-referral-program h3 {
    font-size: 1.6em;
    color: #FFD700;
}

.page-promotions-789b-referral-program p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.page-promotions-789b-referral-program a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions-789b-referral-program a:hover {
    text-decoration: underline;
}

/* Buttons */
.page-promotions-789b-referral-program .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-promotions-789b-referral-program .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue text */
}

.page-promotions-789b-referral-program .btn-primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-promotions-789b-referral-program .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-789b-referral-program .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-promotions-789b-referral-program .btn-tertiary {
    background-color: #1A2E4C; /* A slightly lighter dark blue */
    color: #FFD700;
    border: 2px solid #1A2E4C;
}

.page-promotions-789b-referral-program .btn-tertiary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

/* Hero Section */
.page-promotions-789b-referral-program .hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1A2E4C 100%);
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions-789b-referral-program .hero-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-promotions-789b-referral-program .hero-content {
    flex: 1;
    text-align: left;
}

.page-promotions-789b-referral-program .hero-content h1 {
    text-align: left;
    color: #FFD700;
}

.page-promotions-789b-referral-program .hero-content p {
    text-align: left;
    margin-bottom: 30px;
    color: #C0C0C0;
}

.page-promotions-789b-referral-program .hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions-789b-referral-program .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Why Join Section */
.page-promotions-789b-referral-program .why-join-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-promotions-789b-referral-program .why-join-section p {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-promotions-789b-referral-program .feature-item {
    background-color: #1A2E4C; /* Darker blue background for items */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-789b-referral-program .feature-item:hover {
    transform: translateY(-5px);
}

.page-promotions-789b-referral-program .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-789b-referral-program .feature-item h3 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-789b-referral-program .feature-item p {
    color: #C0C0C0;
    font-size: 0.95em;
}

/* How It Works Section */
.page-promotions-789b-referral-program .how-it-works-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-promotions-789b-referral-program .how-it-works-section p {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promotions-789b-referral-program .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-789b-referral-program .step-item {
    background-color: #1A2E4C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.page-promotions-789b-referral-program .step-number {
    background-color: #FFD700;
    color: #0A192F;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: -50px auto 20px auto;
    border: 4px solid #0A192F;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-789b-referral-program .step-item h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #FFD700;
}

.page-promotions-789b-referral-program .step-item p {
    color: #C0C0C0;
    font-size: 0.95em;
    text-align: center;
}

.page-promotions-789b-referral-program .step-item .btn-secondary {
    margin-top: 20px;
}

.page-promotions-789b-referral-program .process-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 60px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Commission Structure Section */
.page-promotions-789b-referral-program .commission-structure-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-promotions-789b-referral-program .commission-structure-section h2 {
    margin-bottom: 40px;
}

.page-promotions-789b-referral-program .commission-details {
    background-color: #1A2E4C;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
    color: #E0E0E0;
}

.page-promotions-789b-referral-program .commission-details h3 {
    text-align: left;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-789b-referral-program .commission-details p,
.page-promotions-789b-referral-program .commission-details ul {
    text-align: left;
    margin-bottom: 20px;
    color: #C0C0C0;
}

.page-promotions-789b-referral-program .commission-details ul {
    list-style-type: disc;
    padding-left: 25px;
}

.page-promotions-789b-referral-program .commission-details ul li {
    margin-bottom: 10px;
}

.page-promotions-789b-referral-program .commission-chart {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Tips for Success Section */
.page-promotions-789b-referral-program .tips-for-success-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-promotions-789b-referral-program .tips-for-success-section h2 {
    margin-bottom: 40px;
}

.page-promotions-789b-referral-program .tip-list {
    list-style-type: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-promotions-789b-referral-program .tip-list li {
    background-color: #1A2E4C;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    color: #E0E0E0;
    font-size: 1.05em;
    line-height: 1.6;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-789b-referral-program .tip-list li::before {
    content: '✔️'; /* Checkmark icon */
    margin-right: 15px;
    color: #FFD700;
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0;
}

.page-promotions-789b-referral-program .tips-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-promotions-789b-referral-program .faq-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-promotions-789b-referral-program .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions-789b-referral-program .accordion-item {
    background-color: #1A2E4C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-789b-referral-program .accordion-header {
    background-color: #2A3F60; /* Slightly lighter dark blue for header */
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-789b-referral-program .accordion-header:hover {
    background-color: #3A5070;
}

.page-promotions-789b-referral-program .accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-promotions-789b-referral-program .accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-789b-referral-program .accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-789b-referral-program .accordion-content p {
    padding-bottom: 20px;
    margin-top: 10px;
    color: #C0C0C0;
    text-align: left;
}

/* Final CTA Section */
.page-promotions-789b-referral-program .final-cta-section {
    padding: 80px 0;
    background-color: #1A2E4C;
    text-align: center;
}

.page-promotions-789b-referral-program .final-cta-section h2 {
    color: #FFD700;
    margin-bottom: 30px;
}

.page-promotions-789b-referral-program .final-cta-section p {
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

.page-promotions-789b-referral-program .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-789b-referral-program .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-789b-referral-program .hero-content,
    .page-promotions-789b-referral-program .hero-image-wrapper {
        flex: none;
        width: 100%;
    }

    .page-promotions-789b-referral-program .hero-content h1,
    .page-promotions-789b-referral-program .hero-content p {
        text-align: center;
    }

    .page-promotions-789b-referral-program h1 {
        font-size: 2.2em;
    }

    .page-promotions-789b-referral-program h2 {
        font-size: 1.8em;
    }

    .page-promotions-789b-referral-program .features-grid,
    .page-promotions-789b-referral-program .steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-789b-referral-program .step-number {
        margin-top: 0;
    }

    .page-promotions-789b-referral-program .process-image,
    .page-promotions-789b-referral-program .commission-chart,
    .page-promotions-789b-referral-program .tips-image {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .page-promotions-789b-referral-program h1 {
        font-size: 1.8em;
    }

    .page-promotions-789b-referral-program h2 {
        font-size: 1.5em;
    }

    .page-promotions-789b-referral-program h3 {
        font-size: 1.3em;
    }

    .page-promotions-789b-referral-program .btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions-789b-referral-program .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-789b-referral-program .accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-promotions-789b-referral-program .accordion-content p {
        padding-bottom: 15px;
        padding-left: 0;
        padding-right: 0;
    }

    .page-promotions-789b-referral-program .commission-details,
    .page-promotions-789b-referral-program .tip-list {
        padding: 20px;
    }
    .page-promotions-789b-referral-program .tip-list li {
        padding: 15px;
        font-size: 0.95em;
    }
    .page-promotions-789b-referral-program .tip-list li::before {
        margin-right: 10px;
    }
}