        body {
            background-color: #000000; /* Set a black background for the whole page */
        }
        
        /* New wrapper for full-width background */
        .hero-banner-wrapper {
            background: linear-gradient(135deg, #4d0f0f, #1a0000);
            padding: 2rem 0 0; /* Removed bottom padding */
        }

        /* Main hero banner container - now for content alignment */
        .promotions_hero-banner {
            display: flex;
            max-width: 1440px;
            width: 100%;
            height: 550px; /* Fixed height for consistency */
            margin: 0 auto; /* Center the container within the wrapper */
            overflow: hidden;
            border-radius: 8px;
            margin-top: 40px;
        }

        /* Left section for text content */
        .promotions_left-section {
            flex: 0 0 50%;
            padding: 60px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            color: #ffffff;
        }

        /* "Enjoy" heading */
        .promotions_main-heading {
            font-family: 'Baskervville SC', serif;
            font-size: 2.5rem;
            font-weight: 400;
            margin: 0;
            color: #ffffff;
            opacity: 0.9;
            letter-spacing: 1px;
        }

        /* "Our Promotions" heading with gold color */
        .promotions_sub-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            margin: 0 0 25px 0;
            line-height: 1.1;
            color: #C8A544;
        }

        /* Paragraph description */
        .promotions_description {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            color: #f0f0f0;
            margin-bottom: 40px;
            line-height: 1.7;
            max-width: 450px;
            font-weight: 400;
        }

        /* "Contact Us" button */
        .promotions_cta-button {
            background-color: #C8A544;
            color: #1a0000;
            border: none;
            border-radius: 50px;
            padding: 16px 40px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-decoration: none;
        }

        .promotions_cta-button:hover {
            background-color: #daa520;
            transform: translateY(-2px);
        }

        /* Right section for the image */
        .promotions_right-section {
            flex: 0 0 50%;
            position: relative;
        }

        .promotions_main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* New Promotions Section Styles */
        .promotions-section-wrapper {
            background-color: #000000;
            padding: 4rem 2rem;
        }

        .promotions-display-section {
            max-width: 1200px;
            margin: 0 auto;
            color: #ffffff;
        }
        
        .promotions-display-heading {
            color: #DBA612;
            text-align: center;
            font-family: "Baskervville SC", serif;
            font-size: 60px;
            font-style: normal;
            font-weight: 400;
            margin-bottom: 2.5rem;
        }

        .promotions-display-container {
            display: flex;
            gap: 40px;
            background: linear-gradient(180deg, rgba(181, 3, 3, 0.50) 0%, rgba(128, 0, 0, 0.50) 49.69%, rgba(77, 1, 1, 0.50) 99.38%);
            padding: 40px;
            border-radius: 12px;
        }

        .promotions-display-left {
            flex: 0 0 400px;
        }

        .promotions-display-image {
            width: 400px;
            height: 600px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 2px solid #fff;
        }

        .promotions-display-right {
            flex: 1;
            padding-left: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .promotions-tabs {
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .promotions-tab-btn {
            background: transparent;
            border: none;
            border-bottom: 3px solid transparent;
            color: rgba(255,255,255,0.7);
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 10px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .promotions-tab-btn.active {
            color: #ffffff;
            border-bottom-color: #C8A544;
        }

        .promotions-tab-btn:not(.active):hover {
            color: #ffffff;
        }

        .promotions-tab-content {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            line-height: 1.8;
            color: #f0f0f0;
        }
        
        .promotions-tab-content ul {
            list-style: none;
            padding-left: 0;
        }

        .promotions-tab-content li {
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .promotions-tab-content li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: #C8A544;
            font-size: 0.8rem;
            top: 5px;
        }

        .promo-actions {
            margin-top: auto; /* Pushes buttons to the bottom */
            padding-top: 20px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .promo-action-btn {
            background: transparent;
            color: #C8A544;
            border: 2px solid #C8A544;
            border-radius: 50px;
            padding: 12px 30px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
        }

        .promo-action-btn:hover {
            background: #C8A544;
            color: #4D0101;
        }

        .other-promotions-heading {
            text-align: center;
            font-family: 'Baskervville SC', serif;
            font-size: 2.8rem;
            font-weight: 400;
            color: #C8A544;
            margin-top: 5rem;
            margin-bottom: 2.5rem;
        }

        .promotions-cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Strict 3-column grid */
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .promotion-card {
            border-radius: 10.689px;
            border: 1.069px solid rgba(255, 255, 255, 0.06);
            background: linear-gradient(180deg, rgba(253, 0, 0, 0.06) 0%, rgba(175, 2, 2, 0.32) 100%);
            padding: 20px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            display: flex;
            flex-direction: column;
        }

        .promotion-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(200, 165, 68, 0.15);
        }

        .promotion-card .promo-card-image-wrapper {
            width: 270.438px;
            height: 384.076px;
            border-radius: 8px;
            border: 1px solid #fff;
            overflow: hidden;
            margin: 0 auto 20px;
            flex-shrink: 0;
        }

        .promotion-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .promotion-card-content {
            padding: 0;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .promotion-card-content h3 {
            font-family: 'Poppins', sans-serif;
            margin: 0 0 20px 0;
            color: #ffffff;
            font-size: 1.25rem;
            flex-grow: 1;
        }

        .promo-card-button {
            background: transparent;
            color: #C8A544;
            border: 2px solid #C8A544;
            border-radius: 50px;
            padding: 12px 30px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .promo-card-button:hover {
            background: #C8A544;
            color: #4D0101;
        }


        /* Responsive adjustments */
        @media (max-width: 992px) {
            .promotions_hero-banner {
                flex-direction: column;
                height: auto; /* Revert to auto height on mobile */
                border-radius: 0;
            }
            .promotions_right-section { 
                order: 1; 
            }
            .promotions_left-section { 
                align-items: center; 
                text-align: center; 
                padding: 40px; 
            }
            .promotions_main-image {
                width: 100%;
                height: auto;
                aspect-ratio: unset;
                border-radius: 0;
            }
            
            .promotions-display-container {
                flex-direction: column;
                padding: 20px;
                gap: 20px;
            }
            .promotions-display-left { flex: 0 0 auto; }
            .promotions-display-image { width: 100%; height: auto; max-height: 500px; }
            .promotions-display-right { padding-left: 0; }
            .promotions-display-heading { font-size: 40px; }
            
            .promotions-cards-container {
                grid-template-columns: 1fr; /* Single column on mobile */
            }
        }

        @media (max-width: 576px) {
            .promotions_main-heading { font-size: 2rem; }
            .promotions_sub-heading { font-size: 2.8rem; }
            .promotions_description { font-size: 1rem; }
            .promotions_left-section { padding: 30px 25px; }
            .promotions_cta-button { padding: 14px 35px; width: 100%; max-width: 300px; }
            .promotions-display-heading { font-size: 36px; }
            .other-promotions-heading { font-size: 2.2rem; }
            .promotions-tabs { justify-content: center; }
            .promotions-tab-btn { font-size: 1rem; padding: 10px 0; }
        }