
        :root {
            --primary-color: #26A9E0;
            --secondary-color: #FFFFFF;
            --login-button-color: #EA7C07;
            --text-color: #333333;
            --light-bg-color: #f5f5f5;
            --border-color: #e0e0e0;
            --dark-text-color: #000000;
        }

        .page-index-latest-promotions {
            font-family: 'Arial', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--secondary-color);
        }

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

        .page-index-latest-promotions__hero-section {
            position: relative;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            text-align: center;
            padding: 10px 20px 80px 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 0 0 20px 20px;
        }

        .page-index-latest-promotions__hero-image {
            width: 100%;
            height: auto;
            max-width: 100%;
            display: block;
            object-fit: cover;
            margin-bottom: 30px;
            border-radius: 10px;
        }

        .page-index-latest-promotions__hero-content {
            z-index: 1;
            max-width: 900px;
        }

        .page-index-latest-promotions__hero-title {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--secondary-color);
        }

        .page-index-latest-promotions__hero-description {
            font-size: 1.15rem;
            margin-bottom: 30px;
            max-width: 800px;
            color: var(--secondary-color);
        }

        .page-index-latest-promotions__cta-button {
            display: inline-block;
            background-color: var(--login-button-color);
            color: var(--secondary-color);
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .page-index-latest-promotions__cta-button:hover {
            background-color: #c76706;
            transform: translateY(-2px);
        }

        .page-index-latest-promotions__section {
            padding: 60px 20px;
            background-color: var(--secondary-color);
            text-align: center;
        }

        .page-index-latest-promotions__section--light-bg {
            background-color: var(--light-bg-color);
        }

        .page-index-latest-promotions__section-title {
            font-size: 2.5rem;
            color: var(--dark-text-color);
            margin-bottom: 40px;
            font-weight: 700;
        }

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

        .page-index-latest-promotions__card {
            background-color: var(--secondary-color);
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 380px;
            border: 1px solid var(--border-color);
        }

        .page-index-latest-promotions__card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .page-index-latest-promotions__card-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .page-index-latest-promotions__card-title {
            font-size: 1.6rem;
            color: var(--dark-text-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-index-latest-promotions__card-description {
            font-size: 1rem;
            color: var(--text-color);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-index-latest-promotions__card-button {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
        }

        .page-index-latest-promotions__card-button:hover {
            background-color: #1e87b7;
        }

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

        .page-index-latest-promotions__step-item {
            background-color: var(--secondary-color);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            text-align: left;
            display: flex;
            align-items: flex-start;
            gap: 25px;
            border: 1px solid var(--border-color);
        }

        .page-index-latest-promotions__step-icon {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            object-fit: contain;
        }

        .page-index-latest-promotions__step-content {
            flex-grow: 1;
        }

        .page-index-latest-promotions__step-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .page-index-latest-promotions__step-description {
            font-size: 1.05rem;
            color: var(--text-color);
        }

        .page-index-latest-promotions__faq-section {
            padding: 60px 20px;
            background-color: var(--light-bg-color);
            text-align: center;
        }

        .page-index-latest-promotions__faq-list {
            max-width: 900px;
            margin: 40px auto 0 auto;
            text-align: left;
        }

        .page-index-latest-promotions__faq-item {
            background-color: var(--secondary-color);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .page-index-latest-promotions__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-text-color);
            background-color: var(--secondary-color);
            transition: background-color 0.3s ease;
            user-select: none;
        }

        .page-index-latest-promotions__faq-question:hover {
            background-color: #f9f9f9;
        }

        .page-index-latest-promotions__faq-question h3 {
            margin: 0;
            pointer-events: none; /* Prevent h3 from blocking click on parent */
            flex-grow: 1;
        }

        .page-index-latest-promotions__faq-toggle {
            font-size: 1.8rem;
            line-height: 1;
            margin-left: 15px;
            transition: transform 0.3s ease;
            pointer-events: none; /* Prevent toggle from blocking click on parent */
        }

        .page-index-latest-promotions__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: var(--text-color);
            font-size: 1rem;
            text-align: left;
        }

        .page-index-latest-promotions__faq-item.active .page-index-latest-promotions__faq-answer {
            max-height: 2000px !important; /* Sufficiently large value */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-index-latest-promotions__faq-item.active .page-index-latest-promotions__faq-toggle {
            transform: rotate(45deg);
        }

        .page-index-latest-promotions__final-cta {
            background: linear-gradient(135deg, var(--primary-color), #1e87b7);
            color: var(--secondary-color);
            padding: 80px 20px;
            text-align: center;
            border-radius: 20px;
            margin-top: 60px;
        }

        .page-index-latest-promotions__final-cta-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .page-index-latest-promotions__final-cta-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: var(--secondary-color);
        }

        .page-index-latest-promotions__internal-link {
            color: var(--primary-color);
            text-decoration: underline;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .page-index-latest-promotions__internal-link:hover {
            color: #1e87b7;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .page-index-latest-promotions__hero-title {
                font-size: clamp(2rem, 5vw, 3rem);
            }

            .page-index-latest-promotions__section-title {
                font-size: 2rem;
            }

            .page-index-latest-promotions__card {
                padding: 25px;
            }

            .page-index-latest-promotions__card-title {
                font-size: 1.4rem;
            }

            .page-index-latest-promotions__step-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .page-index-latest-promotions__step-icon {
                margin-bottom: 20px;
            }

            .page-index-latest-promotions__faq-question {
                font-size: 1.1rem;
                padding: 18px 20px;
            }

            .page-index-latest-promotions__final-cta-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .page-index-latest-promotions {
                font-size: 16px;
                line-height: 1.6;
            }

            .page-index-latest-promotions__container,
            .page-index-latest-promotions__hero-section,
            .page-index-latest-promotions__section,
            .page-index-latest-promotions__faq-section,
            .page-index-latest-promotions__final-cta {
                padding-left: 15px !important;
                padding-right: 15px !important;
                box-sizing: border-box !important;
                width: 100% !important;
                max-width: 100% !important;
                overflow-x: hidden !important;
            }

            /* Images and Videos Responsive */
            .page-index-latest-promotions img,
            .page-index-latest-promotions video {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }

            .page-index-latest-promotions__hero-image,
            .page-index-latest-promotions__card-image,
            .page-index-latest-promotions__step-icon {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                box-sizing: border-box !important;
            }

            /* Buttons Responsive */
            .page-index-latest-promotions__cta-button,
            .page-index-latest-promotions__card-button,
            .page-index-latest-promotions a[class*="button"],
            .page-index-latest-promotions a[class*="btn"] {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding-left: 15px;
                padding-right: 15px;
                text-align: center;
            }

            .page-index-latest-promotions__button-group {
                flex-direction: column;
                gap: 15px;
            }

            /* List Items Responsive */
            .page-index-latest-promotions__steps-list {
                gap: 20px;
            }
            .page-index-latest-promotions__step-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 20px;
            }
            .page-index-latest-promotions__step-item p {
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }
            .page-index-latest-promotions__faq-list {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-index-latest-promotions__faq-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-index-latest-promotions__faq-question,
            .page-index-latest-promotions__faq-answer {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }

            .page-index-latest-promotions__hero-title {
                font-size: 2rem;
            }

            .page-index-latest-promotions__hero-description {
                font-size: 1rem;
            }

            .page-index-latest-promotions__section-title {
                font-size: 1.8rem;
            }

            .page-index-latest-promotions__card {
                min-height: auto;
            }

            .page-index-latest-promotions__card-title {
                font-size: 1.25rem;
            }

            .page-index-latest-promotions__step-title {
                font-size: 1.5rem;
            }

            .page-index-latest-promotions__final-cta-title {
                font-size: 1.8rem;
            }

            .page-index-latest-promotions__final-cta-description {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .page-index-latest-promotions__hero-section {
                padding-top: 10px;
                padding-bottom: 40px;
            }
            .page-index-latest-promotions__section {
                padding: 40px 15px;
            }
            .page-index-latest-promotions__card {
                padding: 20px;
            }
            .page-index-latest-promotions__final-cta {
                padding: 50px 15px;
            }
        }
    