
        :root {
            --primary-color: #113B7A;
            --secondary-color: #1D5FD1;
            --glow-color: #4FA8FF;
            --gold-color: #F2C14E;
            --border-color: #244D84;
            --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
            --card-bg: #10233F;
            --divider-color: #1B3357;
            --deep-navy: #08162B;
            --text-main-color: #F3F8FF;
            --text-secondary-color: #AFC4E8;
        }

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

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

        .page-promotions__hero-section {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            padding-top: 10px; /* Aligns with shared body padding-top */
            background-color: var(--deep-navy);
            overflow: hidden;
        }

        .page-promotions__hero-image {
            width: 100%;
            max-width: 1200px;
            margin-bottom: 30px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .page-promotions__hero-image img {
            width: 100%;
            height: auto;
            max-width: 100%;
            display: block;
            object-fit: cover;
        }

        .page-promotions__hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-promotions__hero-content h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            color: var(--gold-color);
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
            text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
        }

        .page-promotions__hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: var(--text-secondary-color);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-promotions__cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--button-gradient);
            color: var(--text-main-color);
            text-decoration: none;
            border-radius: 8px;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            cursor: pointer;
        }

        .page-promotions__cta-button:hover {
            background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .page-promotions__section {
            padding: 50px 20px;
            background-color: var(--deep-navy);
            border-bottom: 1px solid var(--divider-color);
        }

        .page-promotions__section:last-of-type {
            border-bottom: none;
        }

        .page-promotions__section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: var(--gold-color);
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .page-promotions__section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--glow-color);
            border-radius: 2px;
        }

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

        .page-promotions__card {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .page-promotions__card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border-color: var(--glow-color);
        }

        .page-promotions__card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--gold-color);
            border: 2px solid var(--gold-color);
        }

        .page-promotions__card-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        .page-promotions__card-title {
            font-size: 1.5rem;
            color: var(--gold-color);
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.3;
        }

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

        .page-promotions__card-button {
            display: inline-block;
            padding: 10px 25px;
            background: var(--button-gradient);
            color: var(--text-main-color);
            text-decoration: none;
            border-radius: 5px;
            font-size: 0.95rem;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .page-promotions__card-button:hover {
            background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

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

        .page-promotions__list-item {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: background-color 0.3s ease;
        }

        .page-promotions__list-item:hover {
            background-color: #152A4A;
        }

        .page-promotions__list-icon {
            font-size: 2rem;
            color: var(--glow-color);
            flex-shrink: 0;
        }

        .page-promotions__list-content h3 {
            color: var(--gold-color);
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 5px;
        }

        .page-promotions__list-content p {
            color: var(--text-secondary-color);
            font-size: 0.95rem;
            margin: 0;
        }

        .page-promotions__faq-section {
            padding: 50px 20px;
            background-color: var(--deep-navy);
        }

        details.page-promotions__faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            background: var(--card-bg);
            transition: border-color 0.3s ease;
        }
        details.page-promotions__faq-item:hover {
            border-color: var(--glow-color);
        }
        details.page-promotions__faq-item summary.page-promotions__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            cursor: pointer;
            user-select: none;
            list-style: none;
            transition: background-color 0.3s ease;
            color: var(--text-main-color);
        }
        details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
            display: none;
        }
        details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
            background: #152A4A;
        }
        .page-promotions__faq-qtext {
            flex: 1;
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.5;
            text-align: left;
            color: var(--gold-color);
        }
        .page-promotions__faq-toggle {
            font-size: 24px;
            font-weight: bold;
            color: var(--glow-color);
            flex-shrink: 0;
            margin-left: 15px;
            width: 28px;
            text-align: center;
        }
        details.page-promotions__faq-item .page-promotions__faq-answer {
            padding: 0 25px 20px;
            background: #152A4A;
            border-radius: 0 0 8px 8px;
            color: var(--text-secondary-color);
        }

        .page-promotions__link-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .page-promotions__link-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--primary-color);
            color: var(--text-main-color);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .page-promotions__link-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .page-promotions__cta-banner {
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 40px 20px;
            text-align: center;
            margin-top: 50px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .page-promotions__cta-banner h2 {
            color: var(--gold-color);
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            margin-bottom: 20px;
        }

        .page-promotions__cta-banner p {
            color: var(--text-main-color);
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 30px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .page-promotions__hero-image {
                max-width: 900px;
            }
        }

        @media (max-width: 768px) {
            .page-promotions__container,
            .page-promotions__hero-section,
            .page-promotions__section,
            .page-promotions__faq-section,
            .page-promotions__cta-banner {
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-promotions__hero-section {
                padding-top: 10px !important;
                padding-bottom: 40px;
            }

            .page-promotions__hero-content h1 {
                font-size: 2.2rem;
            }

            .page-promotions__hero-content p {
                font-size: 1rem;
            }

            .page-promotions__cta-button {
                padding: 12px 30px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

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

            .page-promotions__grid {
                grid-template-columns: 1fr;
            }

            .page-promotions__card {
                padding: 20px;
            }

            .page-promotions__card-title {
                font-size: 1.3rem;
            }

            .page-promotions__card-description {
                font-size: 0.9rem;
            }

            .page-promotions__list-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 15px;
            }

            .page-promotions__list-icon {
                margin-bottom: 10px;
            }

            .page-promotions__list-content h3 {
                font-size: 1.2rem;
            }

            .page-promotions__list-content p {
                font-size: 0.9rem;
            }

            details.page-promotions__faq-item summary.page-promotions__faq-question {
                padding: 15px;
            }
            .page-promotions__faq-qtext {
                font-size: 1rem;
            }
            details.page-promotions__faq-item .page-promotions__faq-answer {
                padding: 0 15px 15px;
            }

            .page-promotions__link-group {
                flex-direction: column;
                gap: 10px;
            }

            .page-promotions__link-button {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-promotions__cta-banner h2 {
                font-size: 1.8rem;
            }

            .page-promotions__cta-banner p {
                font-size: 1rem;
            }

            /* Images responsive */
            .page-promotions img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                box-sizing: border-box !important;
            }

            .page-promotions__hero-image,
            .page-promotions__card,
            .page-promotions__list-item,
            .page-promotions__cta-banner {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden;
            }

            /* List item specific for mobile */
            .page-promotions__list-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }
            .page-promotions__list {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }
    