/* style/latest-promotions-common-promotion-terms-explanation.css */
.page-latest-promotions-common-promotion-terms-explanation {
    font-family: 'Arial', sans-serif;
    color: #1A2E4E; /* Dark blue for main text on light backgrounds */
    line-height: 1.6;
}

.page-latest-promotions-common-promotion-terms-explanation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-latest-promotions-common-promotion-terms-explanation__hero-section {
    background: linear-gradient(135deg, #1A2E4E 0%, #3a5c8e 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-latest-promotions-common-promotion-terms-explanation__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-latest-promotions-common-promotion-terms-explanation__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    font-weight: bold;
}

.page-latest-promotions-common-promotion-terms-explanation__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0; /* Light grey for description */
}

.page-latest-promotions-common-promotion-terms-explanation__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2E4E; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-latest-promotions-common-promotion-terms-explanation__cta-button:hover {
    background-color: #e5c100; /* Darker gold on hover */
    color: #0d1e3a;
}

.page-latest-promotions-common-promotion-terms-explanation__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-latest-promotions-common-promotion-terms-explanation__content-section {
    padding: 60px 0;
    background-color: #f8f8f8; /* Light background for content */
}

.page-latest-promotions-common-promotion-terms-explanation__section-title {
    font-size: 2.5em;
    color: #1A2E4E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-latest-promotions-common-promotion-terms-explanation__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-latest-promotions-common-promotion-terms-explanation__subsection-title {
    font-size: 1.8em;
    color: #1A2E4E;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-latest-promotions-common-promotion-terms-explanation__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
}

.page-latest-promotions-common-promotion-terms-explanation__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-latest-promotions-common-promotion-terms-explanation__list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
}

.page-latest-promotions-common-promotion-terms-explanation__list-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(48%) sepia(93%) saturate(745%) hue-rotate(359deg) brightness(100%) contrast(101%); /* Gold icon */
}

.page-latest-promotions-common-promotion-terms-explanation__list-text strong {
    color: #1A2E4E;
}

.page-latest-promotions-common-promotion-terms-explanation__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-latest-promotions-common-promotion-terms-explanation__inline-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-latest-promotions-common-promotion-terms-explanation__image-caption {
    font-style: italic;
    color: #555;
    margin-top: 15px;
    font-size: 0.95em;
}

.page-latest-promotions-common-promotion-terms-explanation__cta-section {
    background-color: #1A2E4E; /* Dark blue background */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-latest-promotions-common-promotion-terms-explanation__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-latest-promotions-common-promotion-terms-explanation__cta-section .page-latest-promotions-common-promotion-terms-explanation__paragraph {
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-latest-promotions-common-promotion-terms-explanation__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-latest-promotions-common-promotion-terms-explanation__button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-latest-promotions-common-promotion-terms-explanation__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E4E; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-latest-promotions-common-promotion-terms-explanation__button--primary:hover {
    background-color: #e5c100;
    border-color: #e5c100;
    color: #0d1e3a;
}

.page-latest-promotions-common-promotion-terms-explanation__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-latest-promotions-common-promotion-terms-explanation__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2E4E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-latest-promotions-common-promotion-terms-explanation__hero-title {
        font-size: 2.5em;
    }

    .page-latest-promotions-common-promotion-terms-explanation__hero-description {
        font-size: 1em;
    }

    .page-latest-promotions-common-promotion-terms-explanation__section-title {
        font-size: 2em;
    }

    .page-latest-promotions-common-promotion-terms-explanation__subsection-title {
        font-size: 1.5em;
    }

    .page-latest-promotions-common-promotion-terms-explanation__paragraph,
    .page-latest-promotions-common-promotion-terms-explanation__list-item {
        font-size: 1em;
    }

    .page-latest-promotions-common-promotion-terms-explanation__cta-title {
        font-size: 2em;
    }

    .page-latest-promotions-common-promotion-terms-explanation__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-latest-promotions-common-promotion-terms-explanation__button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-latest-promotions-common-promotion-terms-explanation__hero-title {
        font-size: 2em;
    }

    .page-latest-promotions-common-promotion-terms-explanation__section-title {
        font-size: 1.8em;
    }

    .page-latest-promotions-common-promotion-terms-explanation__subsection-title {
        font-size: 1.3em;
    }

    .page-latest-promotions-common-promotion-terms-explanation__cta-title {
        font-size: 1.8em;
    }
}