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

.page-index-latest-promotions-express__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-latest-promotions-express__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-latest-promotions-express__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,patterns]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-latest-promotions-express__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #FFC107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions-express__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-index-latest-promotions-express__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.page-index-latest-promotions-express__btn--primary {
    background-color: #FFC107;
    color: #0056b3;
    border: 2px solid #FFC107;
}

.page-index-latest-promotions-express__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #003ef8;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-express__btn--secondary {
    background-color: #007BFF;
    color: #ffffff;
    border: 2px solid #007BFF;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 8px;
}

.page-index-latest-promotions-express__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-express__btn--outline {
    background-color: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-index-latest-promotions-express__btn--outline:hover {
    background-color: #FFC107;
    color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

.page-index-latest-promotions-express__section--intro {
    background-color: #ffffff;
}

.page-index-latest-promotions-express__section--offers {
    background-color: #e9ecef;
}

.page-index-latest-promotions-express__section--how-to {
    background-color: #ffffff;
}

.page-index-latest-promotions-express__section--faq {
    background-color: #f1f1f1;
}

.page-index-latest-promotions-express__section--cta {
    background: linear-gradient(90deg, #007BFF, #0056b3);
    color: #ffffff;
    padding: 80px 0;
}

.page-index-latest-promotions-express__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #007BFF;
    font-weight: bold;
}

.page-index-latest-promotions-express__section--cta .page-index-latest-promotions-express__section-title {
    color: #FFC107;
}

.page-index-latest-promotions-express__section-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-latest-promotions-express__section--cta .page-index-latest-promotions-express__section-description {
    color: #e0e0e0;
}

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

.page-index-latest-promotions-express__intro-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-index-latest-promotions-express__intro-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-index-latest-promotions-express__intro-heading {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-index-latest-promotions-express__intro-text {
    color: #666;
    font-size: 1.05em;
}

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

.page-index-latest-promotions-express__offer-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-latest-promotions-express__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-index-latest-promotions-express__offer-card h3 {
    font-size: 1.7em;
    color: #007BFF;
    padding: 20px 20px 10px;
}

.page-index-latest-promotions-express__offer-text {
    color: #555;
    padding: 0 20px 15px;
    font-size: 0.95em;
}

.page-index-latest-promotions-express__offer-features {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
}

.page-index-latest-promotions-express__offer-features li {
    margin-bottom: 8px;
    color: #444;
    font-size: 0.9em;
    position: relative;
    padding-left: 25px;
}

.page-index-latest-promotions-express__offer-features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFC107;
}

.page-index-latest-promotions-express__offer-card .page-index-latest-promotions-express__btn--secondary {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    text-align: center;
}

.page-index-latest-promotions-express__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-index-latest-promotions-express__steps li {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    padding-left: 70px;
}

.page-index-latest-promotions-express__steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: #FFC107;
    color: #0056b3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-express__step-heading {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-index-latest-promotions-express__step-text {
    color: #666;
}

.page-index-latest-promotions-express__link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-latest-promotions-express__link:hover {
    color: #FFC107;
    text-decoration: underline;
}

.page-index-latest-promotions-express__text-center {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #444;
}

.page-index-latest-promotions-express__faq-accordion {
    margin-top: 40px;
    text-align: left;
}

.page-index-latest-promotions-express__faq-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-index-latest-promotions-express__faq-question {
    padding: 20px 25px;
    margin: 0;
    font-size: 1.3em;
    color: #007BFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fcfcfc;
    transition: background-color 0.3s ease;
}

.page-index-latest-promotions-express__faq-question:hover {
    background-color: #f0f8ff;
}

.page-index-latest-promotions-express__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFC107;
    transition: transform 0.3s ease;
}

.page-index-latest-promotions-express__faq-item.active .page-index-latest-promotions-express__faq-question::after {
    transform: rotate(45deg);
}

.page-index-latest-promotions-express__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #ffffff;
}

.page-index-latest-promotions-express__faq-item.active .page-index-latest-promotions-express__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 25px;
}

.page-index-latest-promotions-express__faq-answer p {
    margin: 0;
    color: #666;
}

.page-index-latest-promotions-express__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-latest-promotions-express__hero-title {
        font-size: 2.8em;
    }
    .page-index-latest-promotions-express__hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-latest-promotions-express__section-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions-express__intro-grid,
    .page-index-latest-promotions-express__offer-grid {
        grid-template-columns: 1fr;
    }
    .page-index-latest-promotions-express__steps {
        padding: 0 15px;
    }
    .page-index-latest-promotions-express__steps li {
        padding-left: 60px;
    }
    .page-index-latest-promotions-express__steps li::before {
        left: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-index-latest-promotions-express__hero {
        padding: 80px 0;
    }
    .page-index-latest-promotions-express__hero-title {
        font-size: 2.2em;
    }
    .page-index-latest-promotions-express__hero-subtitle {
        font-size: 1em;
    }
    .page-index-latest-promotions-express__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-latest-promotions-express__section {
        padding: 40px 0;
    }
    .page-index-latest-promotions-express__section-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-express__section-description {
        font-size: 1em;
    }
    .page-index-latest-promotions-express__offer-card h3 {
        font-size: 1.5em;
    }
    .page-index-latest-promotions-express__faq-question {
        font-size: 1.1em;
    }
    .page-index-latest-promotions-express__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-latest-promotions-express__cta-buttons .page-index-latest-promotions-express__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-index-latest-promotions-express__hero {
        padding: 60px 0;
    }
    .page-index-latest-promotions-express__hero-title {
        font-size: 1.8em;
    }
    .page-index-latest-promotions-express__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-latest-promotions-express__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-latest-promotions-express__section-title {
        font-size: 1.5em;
    }
    .page-index-latest-promotions-express__offer-card h3 {
        font-size: 1.3em;
    }
    .page-index-latest-promotions-express__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-index-latest-promotions-express__faq-item.active .page-index-latest-promotions-express__faq-answer {
        padding: 10px 20px 20px;
    }
    .page-index-latest-promotions-express__cta-buttons .page-index-latest-promotions-express__btn {
        width: 90%;
    }
}