/* Start custom CSS for html, class: .elementor-element-d2df77b *//* 自訂橘色方形項目符號樣式 */
.orange-bullets {
    list-style-type: none; /* 移除瀏覽器預設的黑色圓點 */
    padding-left: 20px;    /* 留出左側空間 */
}
.orange-bullets li {
    position: relative;
    margin-bottom: 10px;   /* 每個項目之間的間距 */
    line-height: 1.6;
}
.orange-bullets li::before {
    content: "";
    position: absolute;
    left: -16px;           /* 讓橘色點點往左移 */
    top: 8px;              /* 微調垂直對齊位置 */
    width: 6px;            /* 橘色點點的寬度 */
    height: 6px;           /* 橘色點點的高度 */
    background-color: #ed7d31; /* 設定為標題相同的橘色 */
}/* End custom CSS */