/* style/promotions-referral.css */

.page-promotions-referral {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-promotions-referral__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #1A3A8A 100%); /* Deeper blue to slightly lighter blue */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-referral__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFD700; /* Gold for emphasis */
}

.page-promotions-referral__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-promotions-referral__brand-link {
    color: #FFD700; /* Gold for brand links within text */
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-referral__brand-link:hover {
    text-decoration: underline;
}

.page-promotions-referral__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Deep blue text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-promotions-referral__cta-button--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px; /* Spacing between primary and secondary buttons */
}

.page-promotions-referral__cta-button--secondary:hover {
    background-color: #1A3A8A;
    border-color: #E6C200;
}

.page-promotions-referral__intro-section,
.page-promotions-referral__how-it-works,
.page-promotions-referral__benefits-section,
.page-promotions-referral__terms-section,
.page-promotions-referral__tips-section,
.page-promotions-referral__faq-section,
.page-promotions-referral__cta-bottom-section {
    padding: 60px 0;
    background-color: #F8F8F8;
}

.page-promotions-referral__intro-section,
.page-promotions-referral__terms-section,
.page-promotions-referral__faq-section {
    background-color: #FFFFFF;
}

.page-promotions-referral__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-referral__text-content {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
    color: #444;
}

.page-promotions-referral__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-promotions-referral__section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-referral__step-card,
.page-promotions-referral__benefit-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-referral__step-card:hover,
.page-promotions-referral__benefit-card:hover {
    transform: translateY(-5px);
}

.page-promotions-referral__step-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-referral__step-description {
    font-size: 1em;
    color: #555;
}

.page-promotions-referral__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions-referral__benefit-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-referral__benefit-description {
    font-size: 1em;
    color: #555;
}

.page-promotions-referral__terms-list,
.page-promotions-referral__tips-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 20px;
}

.page-promotions-referral__terms-list li,
.page-promotions-referral__tips-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions-referral__terms-list strong {
    color: #0A2463;
}

.page-promotions-referral__faq-item {
    background-color: #F8F8F8;
    border-left: 5px solid #FFD700;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions-referral__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-referral__faq-answer {
    font-size: 1em;
    color: #555;
}

.page-promotions-referral__cta-bottom-section {
    background-color: #0A2463;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-promotions-referral__cta-bottom-section .page-promotions-referral__section-title {
    color: #FFD700;
}

.page-promotions-referral__cta-bottom-section .page-promotions-referral__text-content {
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-referral__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-referral__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-referral__section-title {
        font-size: 2em;
    }
    .page-promotions-referral__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }
    .page-promotions-referral__cta-button--secondary {
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .page-promotions-referral__hero-section,
    .page-promotions-referral__cta-bottom-section {
        padding: 60px 0;
    }
    .page-promotions-referral__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-referral__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-referral__section-title {
        font-size: 1.8em;
    }
    .page-promotions-referral__text-content {
        font-size: 1em;
    }
    .page-promotions-referral__steps-grid,
    .page-promotions-referral__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-referral__cta-button {
        display: block;
        width: 90%;
        margin: 15px auto;
    }
    .page-promotions-referral__cta-button--secondary {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions-referral__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-referral__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-referral__section-title {
        font-size: 1.5em;
    }
    .page-promotions-referral__step-title,
    .page-promotions-referral__benefit-title {
        font-size: 1.3em;
    }
    .page-promotions-referral__faq-question {
        font-size: 1.1em;
    }
    .page-promotions-referral__container {
        padding: 0 15px;
    }
}