 
        /* ===== Right Bullet List Styling ===== */
        .right-bullets {
            list-style: none;
            /* Remove default bullets */
            padding-left: 40px;
            /* Space from page edge */
            margin: 20px 0;
            /* Top & bottom spacing */
        }

        .right-bullets li {
            position: relative;
            padding-left: 30px;
            /* Space for bullet itself */
            margin-bottom: 12px;
            /* Space between items */
            font-size: 16px;
            /* Text size */
            line-height: 1.6;
            /* Line spacing */
            transition: color 0.3s;
            /* Smooth hover transition */
        }

        /* Right-pointing arrow bullet */
        .right-bullets li::before {
            content: "➤";
            /* Arrow symbol (can use ✔ for checkmark) */
            position: absolute;
            left: 0;
            /* Bullet at left of list item */
            color: #003366;
            /* Bullet color */
            font-size: 18px;
            /* Bullet size */
            transition: color 0.3s;
            /* Smooth hover transition */
        }

        /* Hover effect on list item */
        .right-bullets li:hover {
            color: #007ACC;
            /* Text color change on hover */
        }

        .right-bullets li:hover::before {
            color: #007ACC;
            /* Bullet color change on hover */
        }

        /* ===== Responsive Adjustment ===== */
        @media (max-width: 768px) {
            .right-bullets {
                padding-left: 25px;
                /* Less padding on smaller screens */
            }

            .right-bullets li {
                padding-left: 25px;
                font-size: 15px;
            }

            .right-bullets li::before {
                font-size: 16px;
            }
        }
     