/* style/index-latest-promotions.css */
.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light gray for general text on dark backgrounds */
    background-color: #000080; /* Dark blue background */
    line-height: 1.6;
}

.page-index-latest-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-latest-promotions__hero-section {
    background: linear-gradient(135deg, #000080 0%, #000080 50%, #FFD700 100%); /* Dark blue fading to gold */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold title on dark background */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-index-latest-promotions__hero-subtitle {
    font-size: 1.3em;
    color: #e0e0e0; /* Lighter text for subtitle */
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-index-latest-promotions__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* 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;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions__hero-btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-index-latest-promotions__section {
    padding: 60px 0;
    background-color: #0d0d80; /* Slightly lighter dark blue for sections */
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-latest-promotions__section:nth-child(even) {
    background-color: #000080; /* Alternating dark blue backgrounds */
}

.page-index-latest-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold title for sections */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-index-latest-promotions__section-description {
    font-size: 1.1em;
    color: #cccccc; /* Light gray text for descriptions */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.page-index-latest-promotions__promo-grid, .page-index-latest-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-latest-promotions__promo-card, .page-index-latest-promotions__step-card {
    background-color: #1a1a8c; /* Darker blue for cards */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-latest-promotions__promo-card:hover, .page-index-latest-promotions__step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions__promo-img, .page-index-latest-promotions__step-img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 8px;
    background-color: rgba(255, 215, 0, 0.1);
    padding: 15px;
}

.page-index-latest-promotions__card-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold title for cards */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-latest-promotions__card-text {
    font-size: 1em;
    color: #b0b0b0; /* Light gray text for card description */
    margin-bottom: 20px;
}

.page-index-latest-promotions__card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    color: #e0e0e0;
}

.page-index-latest-promotions__card-features li {
    margin-bottom: 10px;
    font-size: 0.95em;
    display: flex;
    align-items: center;
}

.page-index-latest-promotions__feature-icon {
    color: #FFD700; /* Gold icon */
    margin-right: 10px;
    font-size: 1.2em;
}

.page-index-latest-promotions__card-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text on gold */
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions__card-btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-index-latest-promotions__terms-conditions .page-index-latest-promotions__terms-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #000080;
    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;
    margin-top: 30px;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions__terms-conditions .page-index-latest-promotions__terms-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-latest-promotions__why-list {
    list-style: none;
    padding: 0;
    margin: 50px auto;
    max-width: 900px;
    text-align: left;
}

.page-index-latest-promotions__why-list li {
    background-color: #1a1a8c; /* Darker blue for list items */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 1.1em;
    color: #e0e0e0;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
}

.page-index-latest-promotions__list-icon {
    color: #FFD700; /* Gold icon */
    font-size: 1.8em;
    margin-right: 15px;
    line-height: 1;
}

.page-index-latest-promotions__why-list li strong {
    color: #FFD700; /* Gold text for strong elements */
}

.page-index-latest-promotions__cta-buttons {
    text-align: center;
    margin-top: 50px;
}

.page-index-latest-promotions__main-cta-btn, .page-index-latest-promotions__secondary-cta-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    margin: 0 15px;
}

.page-index-latest-promotions__main-cta-btn {
    background-color: #FFD700;
    color: #000080;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions__main-cta-btn:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

.page-index-latest-promotions__secondary-cta-btn {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions__secondary-cta-btn:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions__promo-grid, .page-index-latest-promotions__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index-latest-promotions__main-cta-btn, .page-index-latest-promotions__secondary-cta-btn {
        margin: 10px 0;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__promo-grid, .page-index-latest-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions__promo-card, .page-index-latest-promotions__step-card {
        padding: 25px;
    }
    .page-index-latest-promotions__card-title {
        font-size: 1.6em;
    }
    .page-index-latest-promotions__main-cta-btn, .page-index-latest-promotions__secondary-cta-btn {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions__hero-section {
        padding: 60px 0;
    }
    .page-index-latest-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions__section-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-latest-promotions__why-list li {
        padding: 15px;
        font-size: 1em;
    }
    .page-index-latest-promotions__list-icon {
        font-size: 1.5em;
    }
    .page-index-latest-promotions__main-cta-btn, .page-index-latest-promotions__secondary-cta-btn {
        font-size: 1em;
        padding: 12px 25px;
    }
}