/* style/promotions-weekly-cashback.css */
.page-promotions-weekly-cashback {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #F8F8F8;
}

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

/* Hero Section */
.page-promotions-weekly-cashback__hero {
    background: linear-gradient(135deg, #0A2E36 0%, #0A2E36 60%, #1a4a53 100%); /* Darker gradient for depth */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-weekly-cashback__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern,vn8day]'); /* Subtle background pattern */
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-weekly-cashback__hero > .page-promotions-weekly-cashback__container {
    position: relative;
    z-index: 1;
}

.page-promotions-weekly-cashback__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E0B34C; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-weekly-cashback__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* General Section Styling */
.page-promotions-weekly-cashback__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #eee;
}

.page-promotions-weekly-cashback__section--alt-bg {
    background-color: #f2f7f8; /* A very light variant of main color for subtle contrast */
}

.page-promotions-weekly-cashback__heading {
    font-size: 2.2em;
    color: #0A2E36; /* Main color for headings */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-weekly-cashback__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B34C; /* Accent line under headings */
    border-radius: 2px;
}

.page-promotions-weekly-cashback__sub-heading {
    font-size: 1.6em;
    color: #0A2E36;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #E0B34C;
    padding-left: 15px;
}

.page-promotions-weekly-cashback p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.page-promotions-weekly-cashback strong {
    color: #0A2E36;
}

.page-promotions-weekly-cashback__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-promotions-weekly-cashback__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Images */
.page-promotions-weekly-cashback__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-promotions-weekly-cashback__button {
    display: inline-block;
    background-color: #E0B34C; /* Accent color for buttons */
    color: #0A2E36; /* Main color for button text */
    padding: 15px 30px;
    border-radius: 5px;
    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-weekly-cashback__button:hover {
    background-color: #f7c766; /* Lighter accent on hover */
    transform: translateY(-3px);
}

.page-promotions-weekly-cashback__button--primary {
    background-color: #E0B34C;
    color: #0A2E36;
    box-shadow: 0 5px 15px rgba(224, 179, 76, 0.4);
}

.page-promotions-weekly-cashback__button--primary:hover {
    background-color: #f7c766;
}

.page-promotions-weekly-cashback__section--cta {
    background-color: #0A2E36;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-promotions-weekly-cashback__section--cta .page-promotions-weekly-cashback__heading {
    color: #E0B34C;
}

.page-promotions-weekly-cashback__section--cta .page-promotions-weekly-cashback__heading::after {
    background-color: #FFFFFF;
}

.page-promotions-weekly-cashback__section--cta p {
    color: #f0f0f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* FAQ Section */
.page-promotions-weekly-cashback__faq {
    margin-top: 30px;
}

.page-promotions-weekly-cashback__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-weekly-cashback__faq-question {
    font-size: 1.2em;
    color: #0A2E36;
    padding: 18px 25px;
    cursor: pointer;
    position: relative;
    margin: 0;
    background-color: #FDFDFD;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.page-promotions-weekly-cashback__faq-question:hover {
    background-color: #f5f5f5;
}

.page-promotions-weekly-cashback__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
    color: #E0B34C;
    transition: transform 0.3s ease;
}

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

.page-promotions-weekly-cashback__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #FFFFFF;
}

.page-promotions-weekly-cashback__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
    padding-bottom: 15px;
}

.page-promotions-weekly-cashback__faq-answer p {
    margin: 0;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-weekly-cashback__title {
        font-size: 2em;
    }

    .page-promotions-weekly-cashback__subtitle {
        font-size: 1em;
    }

    .page-promotions-weekly-cashback__heading {
        font-size: 1.8em;
    }

    .page-promotions-weekly-cashback__sub-heading {
        font-size: 1.4em;
    }

    .page-promotions-weekly-cashback__section {
        padding: 40px 0;
    }

    .page-promotions-weekly-cashback__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-weekly-cashback__title {
        font-size: 1.8em;
    }

    .page-promotions-weekly-cashback__subtitle {
        font-size: 0.9em;
    }

    .page-promotions-weekly-cashback__heading {
        font-size: 1.5em;
    }

    .page-promotions-weekly-cashback__sub-heading {
        font-size: 1.2em;
    }

    .page-promotions-weekly-cashback__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions-weekly-cashback__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-weekly-cashback__faq-question::after {
        right: 20px;
    }
    .page-promotions-weekly-cashback__faq-answer {
        padding: 0 20px;
    }
}