/* style/promotions-bonus-terms-explained.css */

.page-promotions-bonus-terms-explained {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F5F5F5; /* Light text for dark background */
    background-color: #0A2239; /* Main dark blue background */
}

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

.page-promotions-bonus-terms-explained__hero-section {
    background: linear-gradient(135deg, #0A2239 0%, #1A3A52 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #F5F5F5;
    border-bottom: 2px solid #E0B400; /* Accent color border */
}

.page-promotions-bonus-terms-explained__title {
    font-size: 2.8em;
    color: #E0B400; /* Accent gold for title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-bonus-terms-explained__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #D3D3D3;
}

.page-promotions-bonus-terms-explained__cta-button {
    display: inline-block;
    background-color: #E0B400; /* Gold button */
    color: #0A2239; /* Dark blue 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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-bonus-terms-explained__cta-button:hover {
    background-color: #FFD700; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-promotions-bonus-terms-explained__content-section {
    padding: 60px 0;
    background-color: #0A2239;
}

.page-promotions-bonus-terms-explained__intro-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #D3D3D3;
}

.page-promotions-bonus-terms-explained__heading {
    font-size: 2em;
    color: #E0B400; /* Gold for main headings */
    margin-top: 40px;
    margin-bottom: 25px;
    border-left: 5px solid #E0B400;
    padding-left: 15px;
    font-weight: bold;
}

.page-promotions-bonus-terms-explained__sub-heading {
    font-size: 1.6em;
    color: #E0B400; /* Slightly lighter gold for sub-headings */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: normal;
}

.page-promotions-bonus-terms-explained__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #D3D3D3;
}

.page-promotions-bonus-terms-explained__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions-bonus-terms-explained__list li::marker {
    color: #E0B400; /* Gold bullets */
}

.page-promotions-bonus-terms-explained p {
    margin-bottom: 15px;
    color: #D3D3D3;
}

.page-promotions-bonus-terms-explained__image-full-width {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-bonus-terms-explained__image-inline {
    width: 100%; /* Default for mobile */
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-bonus-terms-explained__cta-button--bottom {
    margin-top: 50px;
    margin-bottom: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-bonus-terms-explained__title {
        font-size: 2em;
    }
    .page-promotions-bonus-terms-explained__subtitle {
        font-size: 1em;
    }
    .page-promotions-bonus-terms-explained__heading {
        font-size: 1.6em;
    }
    .page-promotions-bonus-terms-explained__sub-heading {
        font-size: 1.3em;
    }
    .page-promotions-bonus-terms-explained__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-bonus-terms-explained__hero-section {
        padding: 50px 0;
    }
    .page-promotions-bonus-terms-explained__title {
        font-size: 1.8em;
    }
    .page-promotions-bonus-terms-explained__subtitle {
        font-size: 0.9em;
    }
    .page-promotions-bonus-terms-explained__heading {
        font-size: 1.4em;
    }
    .page-promotions-bonus-terms-explained__sub-heading {
        font-size: 1.2em;
    }
    .page-promotions-bonus-terms-explained__list {
        margin-left: 20px;
    }
    .page-promotions-bonus-terms-explained__list li {
        font-size: 0.95em;
    }
    .page-promotions-bonus-terms-explained p {
        font-size: 0.95em;
    }
    .page-promotions-bonus-terms-explained__cta-button {
        width: 90%;
        box-sizing: border-box;
    }
}