/* style/promotions-cashback.css */
.page-promotions-cashback {
    font-family: 'Arial', sans-serif;
    color: #e5d4b3; /* Light text for dark background */
    background-color: #1A2B4C; /* Main dark background */
    line-height: 1.6;
}

.page-promotions-cashback__hero {
    background: linear-gradient(135deg, #1A2B4C, #3A4B6C);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-promotions-cashback__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-promotions-cashback__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #F0B90B; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-cashback__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-promotions-cashback__hero-btn {
    display: inline-block;
    background-color: #F0B90B; /* Accent color for button */
    color: #1A2B4C;
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__hero-btn:hover {
    background-color: #d1a00a;
    transform: translateY(-3px);
}

.page-promotions-cashback__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.15;
}

.page-promotions-cashback__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-promotions-cashback__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
}

.page-promotions-cashback__section:last-of-type {
    border-bottom: none;
}

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

.page-promotions-cashback__section-title {
    font-size: 2.5em;
    color: #F0B90B; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions-cashback__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5d4b3;
    text-align: justify;
}

.page-promotions-cashback__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-cashback__list li {
    background-color: #2a3b5c; /* Slightly lighter background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05em;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback__list li strong {
    color: #F0B90B;
}

.page-promotions-cashback__list li::before {
    content: '✅';
    font-size: 1.2em;
    line-height: 1;
    color: #F0B90B;
}

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

.page-promotions-cashback__card {
    background-color: #2a3b5c;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-cashback__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-cashback__card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.8) contrast(1.2);
}

.page-promotions-cashback__card-title {
    font-size: 1.8em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-promotions-cashback__card p {
    font-size: 1em;
    color: #e5d4b3;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: justify;
}

.page-promotions-cashback__card-btn {
    display: inline-block;
    background-color: #F0B90B;
    color: #1A2B4C;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-cashback__card-btn:hover {
    background-color: #d1a00a;
    transform: translateY(-2px);
}

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

.page-promotions-cashback__promo-item {
    background-color: #2a3b5c;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-cashback__promo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(240, 185, 11, 0.5));
}

.page-promotions-cashback__promo-title {
    font-size: 1.6em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-promotions-cashback__promo-item p {
    font-size: 1em;
    color: #e5d4b3;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: justify;
}

.page-promotions-cashback__promo-btn {
    display: inline-block;
    background-color: #F0B90B;
    color: #1A2B4C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-cashback__promo-btn:hover {
    background-color: #d1a00a;
    transform: translateY(-2px);
}

.page-promotions-cashback__terms .page-promotions-cashback__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    color: #e5d4b3;
}

.page-promotions-cashback__terms .page-promotions-cashback__ordered-list li {
    background-color: transparent;
    margin-bottom: 15px;
    padding: 0;
    font-size: 1.05em;
    color: #ffffff;
    box-shadow: none;
    display: list-item;
}

.page-promotions-cashback__terms .page-promotions-cashback__ordered-list li::before {
    content: none;
}

.page-promotions-cashback__terms p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5d4b3;
    text-align: justify;
}

.page-promotions-cashback__how-to-claim .page-promotions-cashback__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-cashback__step-item {
    background-color: #2a3b5c;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-promotions-cashback__step-number {
    background-color: #F0B90B;
    color: #1A2B4C;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(240, 185, 11, 0.5);
}

.page-promotions-cashback__step-title {
    font-size: 1.7em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-promotions-cashback__step-item p {
    font-size: 1em;
    color: #e5d4b3;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: justify;
}

.page-promotions-cashback__step-image {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0.9);
}

.page-promotions-cashback__step-btn {
    display: inline-block;
    background-color: #F0B90B;
    color: #1A2B4C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.page-promotions-cashback__step-btn:hover {
    background-color: #d1a00a;
    transform: translateY(-2px);
}

.page-promotions-cashback__why-choose .page-promotions-cashback__advantage-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.page-promotions-cashback__why-choose .page-promotions-cashback__advantage-list li {
    background-color: #2a3b5c;
    margin-bottom: 0;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05em;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-align: justify;
}

.page-promotions-cashback__why-choose .page-promotions-cashback__advantage-list li::before {
    content: '⭐';
    font-size: 1.2em;
    line-height: 1;
    color: #F0B90B;
}

.page-promotions-cashback__faq .page-promotions-cashback__faq-item {
    background-color: #2a3b5c;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__faq-question {
    font-size: 1.4em;
    color: #F0B90B;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-promotions-cashback__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #F0B90B;
    transition: transform 0.3s ease;
}

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

.page-promotions-cashback__faq-answer {
    font-size: 1em;
    color: #e5d4b3;
    margin-top: 15px;
    display: none;
    text-align: justify;
}

.page-promotions-cashback__faq-answer.active {
    display: block;
}

.page-promotions-cashback__contact-btn {
    display: inline-block;
    background-color: #F0B90B;
    color: #1A2B4C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
}

.page-promotions-cashback__contact-btn:hover {
    background-color: #d1a00a;
    transform: translateY(-2px);
}

.page-promotions-cashback__cta-banner {
    background: linear-gradient(90deg, #1A2B4C, #F0B90B);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-cashback__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A2B4C;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #1A2B4C;
}

.page-promotions-cashback__cta-btn {
    display: inline-block;
    background-color: #1A2B4C;
    color: #F0B90B;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__cta-btn:hover {
    background-color: #0f1c30;
    color: #F0B90B;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-cashback__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-cashback__section-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback__card-grid, .page-promotions-cashback__promo-grid, .page-promotions-cashback__steps, .page-promotions-cashback__why-choose .page-promotions-cashback__advantage-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions-cashback__cta-title {
        font-size: 2.4em;
    }
    .page-promotions-cashback__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback__hero {
        padding: 60px 15px;
    }
    .page-promotions-cashback__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-cashback__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-cashback__section {
        padding: 40px 0;
    }
    .page-promotions-cashback__section-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__intro p, .page-promotions-cashback__terms p, .page-promotions-cashback__promo-item p, .page-promotions-cashback__card p, .page-promotions-cashback__faq-answer {
        font-size: 0.95em;
    }
    .page-promotions-cashback__list li, .page-promotions-cashback__why-choose .page-promotions-cashback__advantage-list li {
        font-size: 0.95em;
        padding: 12px 15px;
    }
    .page-promotions-cashback__card-title, .page-promotions-cashback__promo-title, .page-promotions-cashback__step-title {
        font-size: 1.5em;
    }
    .page-promotions-cashback__faq-question {
        font-size: 1.2em;
    }
    .page-promotions-cashback__cta-banner {
        padding: 40px 15px;
    }
    .page-promotions-cashback__cta-title {
        font-size: 2em;
    }
    .page-promotions-cashback__cta-text {
        font-size: 1em;
    }
    .page-promotions-cashback__cta-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions-cashback__section-title {
        font-size: 1.6em;
    }
    .page-promotions-cashback__card-grid, .page-promotions-cashback__promo-grid, .page-promotions-cashback__steps, .page-promotions-cashback__why-choose .page-promotions-cashback__advantage-list {
        grid-template-columns: 1fr;
    }
    .page-promotions-cashback__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__cta-text {
        font-size: 0.9em;
    }
    .page-promotions-cashback__cta-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}