/* style/index-latest-promotions.css */
.page-index-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #f5e6ce; /* Light text for dark background */
    background-color: #0A1931; /* Primary dark background */
}

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

.page-index-latest-promotions__section {
    padding: 60px 0;
}

.page-index-latest-promotions__hero {
    background: linear-gradient(135deg, #0A1931, #2a3d66);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-index-latest-promotions__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-latest-promotions__subtitle,
.page-index-latest-promotions__description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-latest-promotions__heading {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-latest-promotions__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-latest-promotions__sub-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-latest-promotions__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark 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, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-index-latest-promotions__button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-index-latest-promotions__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Why Choose Section */
.page-index-latest-promotions__why-choose {
    background-color: #1a2a47;
}

.page-index-latest-promotions__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-index-latest-promotions__feature-item {
    background-color: #0A1931;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD700;
}

.page-index-latest-promotions__feature-item p {
    color: #e0e0e0;
}

/* Types of Promos Section */
.page-index-latest-promotions__types-of-promos {
    background-color: #0A1931;
}

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

.page-index-latest-promotions__promo-card {
    background-color: #1a2a47;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-latest-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-index-latest-promotions__promo-card h3 {
    padding: 0 20px;
}

.page-index-latest-promotions__promo-card p {
    padding: 0 20px;
    font-size: 0.95em;
    line-height: 1.5;
    color: #cccccc;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* How to Claim Section */
.page-index-latest-promotions__how-to-claim {
    background-color: #1a2a47;
}

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

.page-index-latest-promotions__step-item {
    background-color: #0A1931;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-top: 60px;
}

.page-index-latest-promotions__step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #0A1931;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 3px solid #0A1931;
    box-shadow: 0 0 0 5px #1a2a47;
}

.page-index-latest-promotions__step-item p {
    color: #e0e0e0;
}

/* Tips Section */
.page-index-latest-promotions__tips {
    background-color: #0A1931;
}

.page-index-latest-promotions__list {
    list-style: none;
    padding: 0;
}

.page-index-latest-promotions__list li {
    background-color: #1a2a47;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__list li p {
    color: #e0e0e0;
}

.page-index-latest-promotions__image--inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* FAQ Section */
.page-index-latest-promotions__faq {
    background-color: #1a2a47;
}

.page-index-latest-promotions__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #FFD700;
    border-radius: 8px;
    overflow: hidden;
}

.page-index-latest-promotions__accordion-header {
    background-color: #0A1931;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-latest-promotions__accordion-header:hover {
    background-color: #1a2a47;
}

.page-index-latest-promotions__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-latest-promotions__accordion-content {
    padding: 0 25px;
    background-color: #0A1931;
    color: #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-latest-promotions__accordion-content.active {
    max-height: 300px; /* Adjust based on expected content length */
    padding: 15px 25px 25px;
}

.page-index-latest-promotions__accordion-content p {
    margin-bottom: 15px;
}

/* CTA Section */
.page-index-latest-promotions__cta {
    background-color: #0A1931;
    text-align: center;
    padding: 80px 0;
}

.page-index-latest-promotions__cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-latest-promotions__title {
        font-size: 2.5em;
    }

    .page-index-latest-promotions__heading {
        font-size: 2em;
    }

    .page-index-latest-promotions__sub-heading {
        font-size: 1.5em;
    }

    .page-index-latest-promotions__features,
    .page-index-latest-promotions__promo-grid,
    .page-index-latest-promotions__steps {
        grid-template-columns: 1fr;
    }

    .page-index-latest-promotions__hero,
    .page-index-latest-promotions__section {
        padding: 40px 0;
    }

    .page-index-latest-promotions__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-latest-promotions__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-index-latest-promotions__step-number {
        top: -20px;
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    .page-index-latest-promotions__step-item {
        padding-top: 50px;
    }

    .page-index-latest-promotions__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-index-latest-promotions__accordion-content.active {
        padding: 10px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions__title {
        font-size: 2em;
    }

    .page-index-latest-promotions__subtitle,
    .page-index-latest-promotions__description {
        font-size: 1em;
    }

    .page-index-latest-promotions__heading {
        font-size: 1.8em;
    }

    .page-index-latest-promotions__sub-heading {
        font-size: 1.3em;
    }

    .page-index-latest-promotions__button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}