       /* Discount Section */
        .discount-promotion-section {
            background: #ffffff;
            padding: 60px 0;
        }

        .discount-promotion-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .discount-promotion-content {
            flex: 1;
        }

        .discount-promotion-heading {
            color: #121212;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .discount-promotion-subtext {
            color: #666;
            font-size: 1rem;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .discount-promotion-book-btn {
            background: #090909;
            color: #ffffff;
            border: none;
            padding: 12px 35px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
        }

        .discount-promotion-book-btn:hover {
            background: #282828;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(18, 18, 18, 0.4);
        }

        .discount-promotion-image-wrapper {
            flex: 1;
        }

        .discount-promotion-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        /* Responsive Design */
        @media (max-width: 991px) {


            .discount-promotion-container {
                flex-direction: column;
                gap: 40px;
            }

            .discount-promotion-heading {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {

            .discount-promotion-section {
                padding: 40px 0;
            }

            .discount-promotion-heading {
                font-size: 2rem;
            }

            .discount-promotion-subtext {
                font-size: 0.95rem;
            }

            .discount-promotion-book-btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
          
            .discount-promotion-heading {
                font-size: 1.75rem;
            }

            .discount-promotion-book-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

      