/* style/promotions-cashback.css */
.page-promotions-cashback {
    font-family: Arial, sans-serif;
    color: #F8F8F8; /* Light text on dark background */
    background-color: #0A192F; /* Primary dark background */
    line-height: 1.6;
}

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

.page-promotions-cashback__hero {
    background: linear-gradient(135deg, #0A192F, #1e3a63); /* Dark blue gradient */
    padding: 100px 0 60px;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
}

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

.page-promotions-cashback__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0; /* Lighter grey for description */
}

.page-promotions-cashback__hero-button,
.page-promotions-cashback__inline-button,
.page-promotions-cashback__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    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-cashback__hero-button:hover,
.page-promotions-cashback__inline-button:hover,
.page-promotions-cashback__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-promotions-cashback__section {
    padding: 60px 0;
    background-color: #0A192F; /* Primary dark background */
    color: #F8F8F8;
}

.page-promotions-cashback__section:nth-of-type(even) {
    background-color: #1a2b47; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-cashback__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-cashback__introduction .page-promotions-cashback__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-promotions-cashback__introduction .page-promotions-cashback__text-content {
    flex: 2;
}

.page-promotions-cashback__introduction .page-promotions-cashback__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-promotions-cashback__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
}

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

.page-promotions-cashback__step-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #FFD700;
}

.page-promotions-cashback__step-item:hover {
    transform: translateY(-5px);
}

.page-promotions-cashback__step-icon {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-cashback__step-item h3 {
    color: #F8F8F8;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions-cashback__step-item p {
    color: #E0E0E0;
}

.page-promotions-cashback__rates-calculation .page-promotions-cashback__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap-reverse; /* Image on right, text on left for this section */
}

.page-promotions-cashback__rates-calculation .page-promotions-cashback__text-content {
    flex: 2;
}

.page-promotions-cashback__rates-calculation .page-promotions-cashback__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-promotions-cashback__rates-calculation h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-cashback__rates-calculation ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-promotions-cashback__rates-calculation ul li {
    background-color: #1a2b47; /* Slightly lighter dark blue for list items */
    margin-bottom: 10px;
    padding: 10px 15px;
    border-left: 4px solid #FFD700;
    border-radius: 5px;
    color: #F8F8F8;
    font-size: 1.05em;
}

.page-promotions-cashback__formula,
.page-promotions-cashback__formula-example {
    background-color: #1a2b47;
    color: #FFD700;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-cashback__grid-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #FFD700;
}

.page-promotions-cashback__grid-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 20px;
}

.page-promotions-cashback__grid-item ul {
    list-style: disc;
    padding-left: 25px;
    color: #E0E0E0;
}

.page-promotions-cashback__grid-item ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

.page-promotions-cashback__benefit-item {
    background-color: #1a2b47;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #FFD700;
}

.page-promotions-cashback__benefit-item:hover {
    transform: translateY(-5px);
}

.page-promotions-cashback__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons pop */
}

.page-promotions-cashback__benefit-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions-cashback__benefit-item p {
    color: #E0E0E0;
}

.page-promotions-cashback__faq-list {
    margin-top: 40px;
}

.page-promotions-cashback__faq-item {
    background-color: #1a2b47;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-promotions-cashback__faq-question {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promotions-cashback__faq-answer {
    color: #E0E0E0;
    font-size: 1.0em;
    display: none; /* Hidden by default, JS will toggle */
}

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

.page-promotions-cashback__cta-final {
    padding: 80px 0;
    background-color: #0A192F;
    text-align: center;
}

.page-promotions-cashback__cta-card {
    background: linear-gradient(90deg, #1a2b47, #0A192F);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid #FFD700;
}

.page-promotions-cashback__cta-image {
    max-width: 100%;
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__cta-content {
    text-align: center;
}

.page-promotions-cashback__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-cashback__cta-description {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-cashback__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-cashback__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-cashback__section-title {
        font-size: 2em;
    }
    .page-promotions-cashback__introduction .page-promotions-cashback__content-wrapper,
    .page-promotions-cashback__rates-calculation .page-promotions-cashback__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions-cashback__introduction .page-promotions-cashback__image-wrapper,
    .page-promotions-cashback__rates-calculation .page-promotions-cashback__image-wrapper {
        order: -1; /* Image above text on smaller screens */
    }
    .page-promotions-cashback__cta-image {
        width: 250px;
    }
    .page-promotions-cashback__cta-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-cashback__hero {
        padding: 80px 0 40px;
    }
    .page-promotions-cashback__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-cashback__hero-description {
        font-size: 1em;
    }
    .page-promotions-cashback__section {
        padding: 40px 0;
    }
    .page-promotions-cashback__section-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__steps,
    .page-promotions-cashback__content-grid,
    .page-promotions-cashback__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-cashback__grid-item ul,
    .page-promotions-cashback__rates-calculation ul {
        padding-left: 20px;
    }
    .page-promotions-cashback__cta-card {
        padding: 30px;
    }
    .page-promotions-cashback__cta-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-cashback__section-title {
        font-size: 1.5em;
    }
    .page-promotions-cashback__hero-button,
    .page-promotions-cashback__inline-button,
    .page-promotions-cashback__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-cashback__cta-title {
        font-size: 1.5em;
    }
    .page-promotions-cashback__cta-description {
        font-size: 0.9em;
    }
}