/* style/index-latest-promotions-overview.css */
.page-index-latest-promotions-overview {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

.page-index-latest-promotions-overview-hero-section {
    background: linear-gradient(135deg, #0A2463, #3E5B97);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions-overview-hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: page-index-latest-promotions-overview-pulse 4s infinite alternate;
}

.page-index-latest-promotions-overview-hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: page-index-latest-promotions-overview-pulse 3s infinite alternate reverse;
}

@keyframes page-index-latest-promotions-overview-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.page-index-latest-promotions-overview-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
}

.page-index-latest-promotions-overview-hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-latest-promotions-overview-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    font-size: 1.1em;
}

.page-index-latest-promotions-overview-btn-primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions-overview-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-latest-promotions-overview-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-latest-promotions-overview-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-index-latest-promotions-overview-section {
    padding: 60px 0;
    text-align: center;
}

.page-index-latest-promotions-overview-section:nth-child(odd) {
    background-color: #f0f4f8;
}

.page-index-latest-promotions-overview-section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-latest-promotions-overview-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-latest-promotions-overview-section-intro {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-index-latest-promotions-overview-promo-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-latest-promotions-overview-promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions-overview-promo-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-index-latest-promotions-overview-promo-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-index-latest-promotions-overview-promo-description {
    color: #666;
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-latest-promotions-overview-content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-index-latest-promotions-overview-content-block-reverse {
    flex-direction: row-reverse;
}

.page-index-latest-promotions-overview-content-text {
    flex: 1;
}

.page-index-latest-promotions-overview-content-text h3 {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-index-latest-promotions-overview-content-text p {
    color: #555;
    margin-bottom: 20px;
}

.page-index-latest-promotions-overview-content-image {
    flex: 1;
    text-align: center;
}

.page-index-latest-promotions-overview-content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions-overview-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-index-latest-promotions-overview-event-list, .page-index-latest-promotions-overview-why-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-latest-promotions-overview-event-list li, .page-index-latest-promotions-overview-why-list li {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions-overview-event-list li:hover, .page-index-latest-promotions-overview-why-list li:hover {
    transform: translateY(-5px);
}

.page-index-latest-promotions-overview-event-list h3, .page-index-latest-promotions-overview-why-list h3 {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-index-latest-promotions-overview-event-list p, .page-index-latest-promotions-overview-why-list p {
    color: #666;
    font-size: 0.95em;
}

.page-index-latest-promotions-overview-steps-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-index-latest-promotions-overview-steps-list li {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    padding: 30px;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-index-latest-promotions-overview-steps-list h3 {
    font-size: 1.6em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-index-latest-promotions-overview-steps-list p {
    color: #666;
}

.page-index-latest-promotions-overview-steps-list p a {
    color: #0A2463;
    text-decoration: underline;
}

.page-index-latest-promotions-overview-steps-list p a:hover {
    color: #FFD700;
}

.page-index-latest-promotions-overview-accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-index-latest-promotions-overview-accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-index-latest-promotions-overview-accordion-header {
    background-color: #0A2463;
    color: #fff;
    padding: 18px 25px;
    cursor: pointer;
    margin: 0;
    font-size: 1.3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.page-index-latest-promotions-overview-accordion-item.active .page-index-latest-promotions-overview-accordion-header::after {
    transform: rotate(45deg);
}

.page-index-latest-promotions-overview-accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #fcfcfc;
}

.page-index-latest-promotions-overview-accordion-content p {
    padding: 15px 0;
    color: #555;
    margin: 0;
}

.page-index-latest-promotions-overview-accordion-item.active .page-index-latest-promotions-overview-accordion-content {
    max-height: 200px; /* Adjust based on content height */
    padding-bottom: 25px;
}

.page-index-latest-promotions-overview-why-list li {
    border-left: 5px solid #FFD700;
    border-top: none;
}

.page-index-latest-promotions-overview-cta-section {
    background: linear-gradient(90deg, #0A2463, #2C427B);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index-latest-promotions-overview-cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-index-latest-promotions-overview-cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-index-latest-promotions-overview-text-center {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-latest-promotions-overview-hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions-overview-section-title {
        font-size: 2em;
    }
    .page-index-latest-promotions-overview-content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-index-latest-promotions-overview-content-block-reverse {
        flex-direction: column;
    }
    .page-index-latest-promotions-overview-content-text h3 {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-overview-promo-grid, 
    .page-index-latest-promotions-overview-event-list, 
    .page-index-latest-promotions-overview-why-list, 
    .page-index-latest-promotions-overview-steps-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions-overview-hero-section {
        padding: 60px 0;
    }
    .page-index-latest-promotions-overview-hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions-overview-hero-description {
        font-size: 1em;
    }
    .page-index-latest-promotions-overview-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-latest-promotions-overview-section {
        padding: 40px 0;
    }
    .page-index-latest-promotions-overview-section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-overview-section-intro {
        font-size: 0.95em;
    }
    .page-index-latest-promotions-overview-promo-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions-overview-cta-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions-overview-cta-description {
        font-size: 1em;
    }
}