/* style/index-latest-offers-express.css */
.page-index-latest-offers-express {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark background */
    background-color: #000000; /* Main background color */
    line-height: 1.6;
}

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

/* Hero Section */
.page-index-latest-offers-express__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Darker gradient for hero */
    position: relative;
    overflow: hidden;
}

.page-index-latest-offers-express__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-index-latest-offers-express__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary color for emphasis */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

.page-index-latest-offers-express__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.8;
}

.page-index-latest-offers-express__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for buttons */
    color: #000000; /* Dark text on bright button */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-latest-offers-express__hero-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-latest-offers-express__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.page-index-latest-offers-express__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Offers List Section */
.page-index-latest-offers-express__offers-list {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-index-latest-offers-express__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-latest-offers-express__section-subtitle {
    font-size: 1.1em;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-index-latest-offers-express__offer-card {
    background-color: #222222;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

.page-index-latest-offers-express__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.page-index-latest-offers-express__offer-card-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-index-latest-offers-express__offer-card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-latest-offers-express__offer-card-description {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.7;
}

.page-index-latest-offers-express__offer-card-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-offers-express__offer-card-btn:hover {
    background-color: #e6c200;
    transform: scale(1.05);
}

/* How to Claim Section */
.page-index-latest-offers-express__how-to-claim {
    padding: 60px 0;
    background-color: #000000;
    border-top: 1px solid #333333;
}

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

.page-index-latest-offers-express__step-card {
    background-color: #222222;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

.page-index-latest-offers-express__step-icon {
    font-size: 2.5em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
    background-color: #3a3a3a;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid #FFD700;
}

.page-index-latest-offers-express__step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-latest-offers-express__step-description {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.7;
}

.page-index-latest-offers-express__step-description a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-index-latest-offers-express__step-description a:hover {
    text-decoration: underline;
}

.page-index-latest-offers-express__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* App Promo Section */
.page-index-latest-offers-express__app-promo {
    padding: 60px 0;
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
}

.page-index-latest-offers-express__app-promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-index-latest-offers-express__app-text {
    text-align: center;
    max-width: 700px;
}

.page-index-latest-offers-express__app-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    margin-top: 30px;
}

.page-index-latest-offers-express__app-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-latest-offers-express__app-image-wrapper {
    max-width: 400px;
    width: 100%;
}

.page-index-latest-offers-express__app-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-index-latest-offers-express__faq {
    padding: 60px 0;
    background-color: #000000;
    border-top: 1px solid #333333;
}

.page-index-latest-offers-express__faq-item {
    background-color: #222222;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

.page-index-latest-offers-express__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    padding-right: 30px;
}

.page-index-latest-offers-express__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-index-latest-offers-express__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-latest-offers-express__faq-answer {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.7;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #3a3a3a;
    margin-top: 15px;
}

.page-index-latest-offers-express__faq-answer.active {
    display: block;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-index-latest-offers-express__hero {
        padding: 120px 20px;
    }

    .page-index-latest-offers-express__hero-title {
        font-size: 4.5em;
    }

    .page-index-latest-offers-express__hero-description {
        font-size: 1.4em;
    }

    .page-index-latest-offers-express__app-promo-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .page-index-latest-offers-express__app-text {
        text-align: left;
        max-width: 50%;
    }

    .page-index-latest-offers-express__app-image-wrapper {
        max-width: 450px;
    }
}

@media (max-width: 767px) {
    .page-index-latest-offers-express__hero-title {
        font-size: 2.5em;
    }

    .page-index-latest-offers-express__hero-description {
        font-size: 1.1em;
    }

    .page-index-latest-offers-express__section-title {
        font-size: 2em;
    }

    .page-index-latest-offers-express__offer-card-title {
        font-size: 1.4em;
    }

    .page-index-latest-offers-express__app-promo-content {
        flex-direction: column;
        text-align: center;
    }

    .page-index-latest-offers-express__app-text {
        max-width: 100%;
    }
}