/* BASIC css start */
    /* 전체 섹션에 패딩 적용 */
    .regular-delivery-section {
        padding: 20px;
    }

    /* 제목 스타일 */
    .regular-delivery-section h2 {
        font-size: 22px;
        font-weight: 700; /* 기본 굵기인 700으로 설정 */
        line-height: 1.3; /* 폰트 크기에 비례하는 줄 간격으로 수정 */
        margin-bottom: 20px; /* 아래쪽 여백 추가 */
    }
    .regular-delivery-section h3 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 10px; /* 아래쪽 여백 추가 */
    }

    /* 리스트 항목에 여백 추가 */
    .regular-delivery-list {
        margin-bottom: 30px; /* 리스트 전체 아래 여백 */
        padding-left: 10px;
    }
    .regular-delivery-list li {
        margin-bottom: 15px; /* 각 항목 아래에 여백 */
        line-height: 1.5; /* 줄 간격 조절 */
    }

    /* 주문 방법 제목에 위쪽 여백 추가 */
    .how-to-order-title {
        margin-top: 30px; /* 위에 여백을 주어 구분 */
    }
    
    /* 주문 방법 리스트 항목에 여백 추가 */
    .order-steps {
        padding-left: 10px;
        line-height: 1.2;
    }
    .order-steps li {
        margin-bottom: 10px; /* 각 단계 아래에 여백 */
    }

/* BASIC css end */

