/* style/promotions-cashback-offers.css */

/* General page styling */
.page-promotions-cashback-offers {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #001f3f; /* Primary dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-cashback-offers__hero-section {
    background: linear-gradient(135deg, #001f3f 0%, #0a3a6b 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #ffcc00; /* Secondary color accent */
}

.page-promotions-cashback-offers__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-cashback-offers__hero-section > * {
    position: relative;
    z-index: 1;
}

.page-promotions-cashback-offers__main-title {
    font-size: 3.5em;
    color: #ffcc00; /* Secondary color for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

.page-promotions-cashback-offers__cta-button {
    display: inline-block;
    background-color: #ffcc00; /* Secondary color for CTA */
    color: #001f3f; /* Dark text on bright button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* Content Section */
.page-promotions-cashback-offers__content-section {
    padding: 60px 0;
    background-color: #001f3f;
}

.page-promotions-cashback-offers__section-title {
    font-size: 2.5em;
    color: #ffcc00; /* Secondary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 204, 0, 0.3);
}

.page-promotions-cashback-offers__text-block {
    background-color: #0a2e50; /* Slightly lighter dark blue for text blocks */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #e0e0e0;
}

.page-promotions-cashback-offers__text-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-promotions-cashback-offers__text-block ol, .page-promotions-cashback-offers__text-block ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-promotions-cashback-offers__text-block li {
    margin-bottom: 8px;
}

.page-promotions-cashback-offers__text-block--center {
    text-align: center;
}

.page-promotions-cashback-offers__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-promotions-cashback-offers__promo-item {
    background-color: #0a2e50;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border-top: 5px solid #ffcc00;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-cashback-offers__promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-cashback-offers__promo-title {
    font-size: 1.8em;
    color: #ffcc00;
    margin-bottom: 15px;
}

.page-promotions-cashback-offers__promo-item p {
    color: #cccccc;
    margin-bottom: 20px;
}

.page-promotions-cashback-offers__promo-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-promotions-cashback-offers__promo-item li {
    margin-bottom: 5px;
}

.page-promotions-cashback-offers__promo-item strong {
    color: #ffcc00;
}

.page-promotions-cashback-offers__promo-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #001f3f;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.page-promotions-cashback-offers__promo-button:hover {
    background-color: #e6b800;
}

.page-promotions-cashback-offers__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-cashback-offers__image--full-width {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-cashback-offers__cta-button--small {
    padding: 12px 25px;
    font-size: 1.1em;
}

.page-promotions-cashback-offers__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.page-promotions-cashback-offers__secondary-cta {
    display: inline-block;
    color: #ffcc00;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #ffcc00;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-cashback-offers__secondary-cta:hover {
    background-color: #ffcc00;
    color: #001f3f;
}

/* FAQ Section */
.page-promotions-cashback-offers__faq-list {
    margin-bottom: 40px;
}

.page-promotions-cashback-offers__faq-item {
    background-color: #0a2e50;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #ffcc00;
}

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

.page-promotions-cashback-offers__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-promotions-cashback-offers__faq-answer {
    color: #cccccc;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-promotions-cashback-offers__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-cashback-offers__main-title {
        font-size: 2.5em;
    }

    .page-promotions-cashback-offers__subtitle {
        font-size: 1.1em;
    }

    .page-promotions-cashback-offers__section-title {
        font-size: 2em;
    }

    .page-promotions-cashback-offers__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-cashback-offers__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-promotions-cashback-offers__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-cashback-offers__main-title {
        font-size: 2em;
    }

    .page-promotions-cashback-offers__subtitle {
        font-size: 1em;
    }

    .page-promotions-cashback-offers__section-title {
        font-size: 1.8em;
    }

    .page-promotions-cashback-offers__text-block {
        padding: 20px;
    }

    .page-promotions-cashback-offers__promo-item {
        padding: 20px;
    }
}